rtl8188eu: Ftatten btc

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2021-07-22 19:04:09 -05:00
parent 4de1397841
commit e086df9ed1
3 changed files with 48 additions and 5 deletions

View file

@ -141,10 +141,7 @@ _OUTSRC_FILES := phydm_debug.o \
phydm_kfree.o\
phydm_ccx.o
EXTRA_CFLAGS += -I$(src)/platform
EXTRA_CFLAGS += -I$(src)/btc
EXTRA_CFLAGS += -I$(src)
RTL871X = rtl8188e

View file

@ -1,4 +1,4 @@
#include "btc/mp_precomp.h"
#include "mp_precomp.h"
#include <hal_btcoex_wifionly.h>
static struct wifi_only_cfg GLBtCoexistWifiOnly;

View file

@ -1,3 +1,49 @@
/* SPDX-License-Identifier: GPL-2.0 */
/* 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__ */