forked from Minki/linux
staging: rtl8723bs: Remove function rtw_btcoex_SetDBG()
Remove function rtw_btcoex_SetDBG as all it does is call hal_btcoex_setDBG. Modify call sites accordingly. Include the header file for hal_btcoex in the file that now calls hal_btcoex_SetDBG instead of rtw_btcoex_SetDBG. Issue found with Coccinelle. Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com> Link: https://lore.kernel.org/r/20190702070132.6997-6-nishkadg.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d312a47f35
commit
24c4326e34
@ -43,11 +43,6 @@ void rtw_btcoex_DisplayBtCoexInfo(struct adapter *padapter, u8 *pbuf, u32 bufsiz
|
|||||||
hal_btcoex_DisplayBtCoexInfo(padapter, pbuf, bufsize);
|
hal_btcoex_DisplayBtCoexInfo(padapter, pbuf, bufsize);
|
||||||
}
|
}
|
||||||
|
|
||||||
void rtw_btcoex_SetDBG(struct adapter *padapter, u32 *pDbgModule)
|
|
||||||
{
|
|
||||||
hal_btcoex_SetDBG(padapter, pDbgModule);
|
|
||||||
}
|
|
||||||
|
|
||||||
u32 rtw_btcoex_GetDBG(struct adapter *padapter, u8 *pStrBuf, u32 bufSize)
|
u32 rtw_btcoex_GetDBG(struct adapter *padapter, u8 *pStrBuf, u32 bufSize)
|
||||||
{
|
{
|
||||||
return hal_btcoex_GetDBG(padapter, pStrBuf, bufSize);
|
return hal_btcoex_GetDBG(padapter, pStrBuf, bufSize);
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
#include <drv_types.h>
|
#include <drv_types.h>
|
||||||
#include <rtw_debug.h>
|
#include <rtw_debug.h>
|
||||||
|
#include <hal_btcoex.h>
|
||||||
|
|
||||||
u32 GlobalDebugLevel = _drv_err_;
|
u32 GlobalDebugLevel = _drv_err_;
|
||||||
|
|
||||||
@ -1410,7 +1411,7 @@ ssize_t proc_set_btcoex_dbg(struct file *file, const char __user *buffer, size_t
|
|||||||
|
|
||||||
DBG_871X(FUNC_ADPT_FMT ": input 0x%08X 0x%08X\n",
|
DBG_871X(FUNC_ADPT_FMT ": input 0x%08X 0x%08X\n",
|
||||||
FUNC_ADPT_ARG(padapter), module[0], module[1]);
|
FUNC_ADPT_ARG(padapter), module[0], module[1]);
|
||||||
rtw_btcoex_SetDBG(padapter, module);
|
hal_btcoex_SetDBG(padapter, module);
|
||||||
|
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
void rtw_btcoex_MediaStatusNotify(struct adapter *, u8 mediaStatus);
|
void rtw_btcoex_MediaStatusNotify(struct adapter *, u8 mediaStatus);
|
||||||
void rtw_btcoex_HaltNotify(struct adapter *);
|
void rtw_btcoex_HaltNotify(struct adapter *);
|
||||||
void rtw_btcoex_DisplayBtCoexInfo(struct adapter *, u8 *pbuf, u32 bufsize);
|
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);
|
u32 rtw_btcoex_GetDBG(struct adapter *, u8 *pStrBuf, u32 bufSize);
|
||||||
|
|
||||||
/* ================================================== */
|
/* ================================================== */
|
||||||
|
Loading…
Reference in New Issue
Block a user