blob: 1259e9ecfa9de86b7b7f511ff5a99a3b680a255f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* Copyright (C) 2013 Spreadtrum Communications Inc.
*
* Filename : sdio_dev.h
* Abstract : This file is a implementation for itm sipc command/event function
*
* Authors : gaole.zhang
*
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef __SDIO_DEV_TEST_H__
#define __SDIO_DEV_TEST_H__
void gaole_creat_test(void);
#if defined(SDIO_TEST_CASE4)
void case4_workq_handler(void);
#endif
#if defined(SDIO_TEST_CASE5)
void case5_workq_handler(void);
#endif
#if defined(SDIO_TEST_CASE6)
void case6_workq_handler(void);
#endif
#if defined(SDIO_TEST_CASE9)
void case9_workq_handler(void);
#endif
#endif//__SDIO_DEV_TEST_H__
|