staging: rtl8723bs: Remove rtw_btcoex_DisplayBtCoexInfo()
Remove function rtw_btcoex_DisplayBtCoexInfo as all it does is call hal_btcoex_DisplayBtCoexInfo. Modify call site accordingly. Issue found with Coccinelle. Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com> Link: https://lore.kernel.org/r/20190702070132.6997-8-nishkadg.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
eb408965f0
commit
66e8fafb70
|
@ -38,11 +38,6 @@ void rtw_btcoex_HaltNotify(struct adapter *padapter)
|
|||
hal_btcoex_HaltNotify(padapter);
|
||||
}
|
||||
|
||||
void rtw_btcoex_DisplayBtCoexInfo(struct adapter *padapter, u8 *pbuf, u32 bufsize)
|
||||
{
|
||||
hal_btcoex_DisplayBtCoexInfo(padapter, pbuf, bufsize);
|
||||
}
|
||||
|
||||
/* ================================================== */
|
||||
/* Below Functions are called by BT-Coex */
|
||||
/* ================================================== */
|
||||
|
|
|
@ -1429,7 +1429,7 @@ int proc_get_btcoex_info(struct seq_file *m, void *v)
|
|||
if (!pbuf)
|
||||
return -ENOMEM;
|
||||
|
||||
rtw_btcoex_DisplayBtCoexInfo(padapter, pbuf, bufsize);
|
||||
hal_btcoex_DisplayBtCoexInfo(padapter, pbuf, bufsize);
|
||||
|
||||
DBG_871X_SEL(m, "%s\n", pbuf);
|
||||
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
|
||||
void rtw_btcoex_MediaStatusNotify(struct adapter *, u8 mediaStatus);
|
||||
void rtw_btcoex_HaltNotify(struct adapter *);
|
||||
void rtw_btcoex_DisplayBtCoexInfo(struct adapter *, u8 *pbuf, u32 bufsize);
|
||||
|
||||
/* ================================================== */
|
||||
/* Below Functions are called by BT-Coex */
|
||||
|
|
Loading…
Reference in New Issue