mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-22 12:33:40 +00:00
rtl8188eu: Ftatten btc
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
4de1397841
commit
e086df9ed1
3 changed files with 48 additions and 5 deletions
5
Makefile
5
Makefile
|
@ -141,10 +141,7 @@ _OUTSRC_FILES := phydm_debug.o \
|
||||||
phydm_kfree.o\
|
phydm_kfree.o\
|
||||||
phydm_ccx.o
|
phydm_ccx.o
|
||||||
|
|
||||||
|
EXTRA_CFLAGS += -I$(src)
|
||||||
EXTRA_CFLAGS += -I$(src)/platform
|
|
||||||
|
|
||||||
EXTRA_CFLAGS += -I$(src)/btc
|
|
||||||
|
|
||||||
RTL871X = rtl8188e
|
RTL871X = rtl8188e
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "btc/mp_precomp.h"
|
#include "mp_precomp.h"
|
||||||
#include <hal_btcoex_wifionly.h>
|
#include <hal_btcoex_wifionly.h>
|
||||||
|
|
||||||
static struct wifi_only_cfg GLBtCoexistWifiOnly;
|
static struct wifi_only_cfg GLBtCoexistWifiOnly;
|
||||||
|
|
46
mp_precomp.h
46
mp_precomp.h
|
@ -1,3 +1,49 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0 */
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
/* Copyright(c) 2007 - 2016 Realtek Corporation. All rights reserved. */
|
/* Copyright(c) 2007 - 2016 Realtek Corporation. All rights reserved. */
|
||||||
|
|
||||||
|
#ifndef __MP_PRECOMP_H__
|
||||||
|
#define __MP_PRECOMP_H__
|
||||||
|
|
||||||
|
#include <drv_types.h>
|
||||||
|
#include <hal_data.h>
|
||||||
|
|
||||||
|
#define BT_TMP_BUF_SIZE 100
|
||||||
|
|
||||||
|
#define rsprintf snprintf
|
||||||
|
|
||||||
|
#define DCMD_Printf DBG_BT_INFO
|
||||||
|
|
||||||
|
#define delay_ms(ms) rtw_mdelay_os(ms)
|
||||||
|
|
||||||
|
#ifdef bEnable
|
||||||
|
#undef bEnable
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define WPP_SOFTWARE_TRACE 0
|
||||||
|
|
||||||
|
typedef enum _BTC_MSG_COMP_TYPE {
|
||||||
|
COMP_COEX = 0,
|
||||||
|
COMP_MAX
|
||||||
|
} BTC_MSG_COMP_TYPE;
|
||||||
|
extern u32 GLBtcDbgType[];
|
||||||
|
|
||||||
|
#define DBG_OFF 0
|
||||||
|
#define DBG_SEC 1
|
||||||
|
#define DBG_SERIOUS 2
|
||||||
|
#define DBG_WARNING 3
|
||||||
|
#define DBG_LOUD 4
|
||||||
|
#define DBG_TRACE 5
|
||||||
|
|
||||||
|
#ifdef CONFIG_BT_COEXIST
|
||||||
|
#define BT_SUPPORT 1
|
||||||
|
#define COEX_SUPPORT 1
|
||||||
|
#define HS_SUPPORT 1
|
||||||
|
#else
|
||||||
|
#define BT_SUPPORT 0
|
||||||
|
#define COEX_SUPPORT 0
|
||||||
|
#define HS_SUPPORT 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "halbtcoutsrc.h"
|
||||||
|
|
||||||
|
#endif /* __MP_PRECOMP_H__ */
|
||||||
|
|
Loading…
Reference in a new issue