xref: /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8188fu/include/hal_sdio_coex.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /******************************************************************************
2*4882a593Smuzhiyun  *
3*4882a593Smuzhiyun  * Copyright(c) 2013 Realtek Corporation. All rights reserved.
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * This program is free software; you can redistribute it and/or modify it
6*4882a593Smuzhiyun  * under the terms of version 2 of the GNU General Public License as
7*4882a593Smuzhiyun  * published by the Free Software Foundation.
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * This program is distributed in the hope that it will be useful, but WITHOUT
10*4882a593Smuzhiyun  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11*4882a593Smuzhiyun  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12*4882a593Smuzhiyun  * more details.
13*4882a593Smuzhiyun  *
14*4882a593Smuzhiyun  * You should have received a copy of the GNU General Public License along with
15*4882a593Smuzhiyun  * this program; if not, write to the Free Software Foundation, Inc.,
16*4882a593Smuzhiyun  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17*4882a593Smuzhiyun  *
18*4882a593Smuzhiyun  *
19*4882a593Smuzhiyun  ******************************************************************************/
20*4882a593Smuzhiyun #ifndef __HAL_SDIO_COEX_H__
21*4882a593Smuzhiyun #define __HAL_SDIO_COEX_H__
22*4882a593Smuzhiyun 
23*4882a593Smuzhiyun #include <drv_types.h>
24*4882a593Smuzhiyun 
25*4882a593Smuzhiyun #ifdef CONFIG_SDIO_MULTI_FUNCTION_COEX
26*4882a593Smuzhiyun 
27*4882a593Smuzhiyun enum { /* for sdio multi-func. coex */
28*4882a593Smuzhiyun 	SDIO_MULTI_WIFI = 0,
29*4882a593Smuzhiyun 	SDIO_MULTI_BT,
30*4882a593Smuzhiyun 	SDIO_MULTI_NUM
31*4882a593Smuzhiyun };
32*4882a593Smuzhiyun 
33*4882a593Smuzhiyun bool ex_hal_sdio_multi_if_bus_available(PADAPTER adapter);
34*4882a593Smuzhiyun 
35*4882a593Smuzhiyun #else
36*4882a593Smuzhiyun 
37*4882a593Smuzhiyun #define ex_hal_sdio_multi_if_bus_available(adapter) TRUE
38*4882a593Smuzhiyun 
39*4882a593Smuzhiyun #endif  /* CONFIG_SDIO_MULTI_FUNCTION_COEX */
40*4882a593Smuzhiyun #endif  /* !__HAL_SDIO_COEX_H__ */
41*4882a593Smuzhiyun 
42