mirror of
https://github.com/chinawrj/rtl8812au
synced 2024-11-08 04:17:35 +00:00
Fix outdated timer_init in BTCOEX routines
This commit is contained in:
parent
b742160fba
commit
a6e3593c59
@ -1707,7 +1707,7 @@ void dump_ht_cap_ie_content(void *sel, const u8 *buf, u32 buf_len)
|
||||
void dump_ht_cap_ie(void *sel, const u8 *ie, u32 ie_len)
|
||||
{
|
||||
const u8 *ht_cap_ie;
|
||||
sint ht_cap_ielen;
|
||||
sint ht_cap_ielen = 0;
|
||||
|
||||
ht_cap_ie = rtw_get_ie(ie, WLAN_EID_HT_CAP, &ht_cap_ielen, ie_len);
|
||||
if (!ie || ht_cap_ie != ie)
|
||||
|
@ -721,8 +721,11 @@ struct btc_wifi_link_info halbtcoutsrc_getwifilinkinfo(PBTC_COEXIST pBtCoexist)
|
||||
return wifi_link_info;
|
||||
}
|
||||
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 15, 0)
|
||||
static void _btmpoper_timer_hdl(void *p)
|
||||
#else
|
||||
static void _btmpoper_timer_hdl(struct timer_list *t)
|
||||
#endif
|
||||
{
|
||||
if (GLBtcBtMpRptWait == _TRUE) {
|
||||
GLBtcBtMpRptWait = _FALSE;
|
||||
@ -2838,7 +2841,11 @@ u8 EXhalbtcoutsrc_InitlizeVariables(void *padapter)
|
||||
/* BT Control H2C/C2H*/
|
||||
GLBtcBtMpOperSeq = 0;
|
||||
_rtw_mutex_init(&GLBtcBtMpOperLock);
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 15, 0)
|
||||
rtw_init_timer(&GLBtcBtMpOperTimer, padapter, _btmpoper_timer_hdl, pBtCoexist);
|
||||
#else
|
||||
timer_setup(&GLBtcBtMpOperTimer, _btmpoper_timer_hdl, 0);
|
||||
#endif
|
||||
_rtw_init_sema(&GLBtcBtMpRptSema, 0);
|
||||
GLBtcBtMpRptSeq = 0;
|
||||
GLBtcBtMpRptStatus = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user