mirror of https://gitee.com/openkylin/linux.git
staging: rtl8723bs: Remove rtw_btcoex_GetRaMask()
Remove function rtw_btcoex_GetRaMask as all it does is call hal_btcoex_GetRaMask. Modify call site accordingly. Issue found with Coccinelle. Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com> Link: https://lore.kernel.org/r/20190701091817.12759-10-nishkadg.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
efa6b6c9c4
commit
69fa65f92d
|
@ -67,11 +67,6 @@ void rtw_btcoex_SetSingleAntPath(struct adapter *padapter, u8 singleAntPath)
|
|||
hal_btcoex_SetSingleAntPath(padapter, singleAntPath);
|
||||
}
|
||||
|
||||
u32 rtw_btcoex_GetRaMask(struct adapter *padapter)
|
||||
{
|
||||
return hal_btcoex_GetRaMask(padapter);
|
||||
}
|
||||
|
||||
void rtw_btcoex_DisplayBtCoexInfo(struct adapter *padapter, u8 *pbuf, u32 bufsize)
|
||||
{
|
||||
hal_btcoex_DisplayBtCoexInfo(padapter, pbuf, bufsize);
|
||||
|
|
|
@ -2153,7 +2153,7 @@ static void UpdateHalRAMask8723B(struct adapter *padapter, u32 mac_id, u8 rssi_l
|
|||
|
||||
mask &= rate_bitmap;
|
||||
|
||||
rate_bitmap = rtw_btcoex_GetRaMask(padapter);
|
||||
rate_bitmap = hal_btcoex_GetRaMask(padapter);
|
||||
mask &= ~rate_bitmap;
|
||||
|
||||
#ifdef CONFIG_CMCC_TEST
|
||||
|
|
|
@ -22,7 +22,6 @@ void rtw_btcoex_HaltNotify(struct adapter *);
|
|||
s32 rtw_btcoex_IsBTCoexCtrlAMPDUSize(struct adapter *);
|
||||
void rtw_btcoex_SetPGAntNum(struct adapter *, u8 antNum);
|
||||
void rtw_btcoex_SetSingleAntPath(struct adapter *padapter, u8 singleAntPath);
|
||||
u32 rtw_btcoex_GetRaMask(struct adapter *);
|
||||
void rtw_btcoex_DisplayBtCoexInfo(struct adapter *, u8 *pbuf, u32 bufsize);
|
||||
void rtw_btcoex_SetDBG(struct adapter *, u32 *pDbgModule);
|
||||
u32 rtw_btcoex_GetDBG(struct adapter *, u8 *pStrBuf, u32 bufSize);
|
||||
|
|
Loading…
Reference in New Issue