blob: 653af15d5ec3ea158dd9a4616ebda0bf82eff665 [file] [log] [blame]
Jes Sorensen3a159d92014-05-25 22:43:23 +02001/******************************************************************************
2 *
3 * Copyright(c) 2007 - 2012 Realtek Corporation. All rights reserved.
4 * Copyright(c) 2014, Jes Sorensen <Jes.Sorensen@redhat.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of version 2 of the GNU General Public License as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 ******************************************************************************/
16#ifndef __RTL8723A_BT_INTF_H__
17#define __RTL8723A_BT_INTF_H__
18
19#include <drv_types.h>
20
21#ifdef CONFIG_8723AU_BT_COEXIST
22bool rtl8723a_BT_using_antenna_1(struct rtw_adapter *padapter);
Jes Sorensenbf2a7b92014-05-25 22:43:24 +020023bool rtl8723a_BT_enabled(struct rtw_adapter *padapter);
Jes Sorensen3a159d92014-05-25 22:43:23 +020024#else
25static inline bool rtl8723a_BT_using_antenna_1(struct rtw_adapter *padapter)
26{
27 return false;
28}
Jes Sorensenbf2a7b92014-05-25 22:43:24 +020029static inline bool rtl8723a_BT_enabled(struct rtw_adapter *padapter)
30{
31 return false;
32}
Jes Sorensen3a159d92014-05-25 22:43:23 +020033#endif
34
35#endif