staging: rtl8723bs: hal: Replace function rtl8723b_set_ap_wowlan_cmd()
Remove function rtl8723b_set_ap_wowlan_cmd as all it does is call rtl8723b_set_AP_FwWoWlanRelated_cmd. Rename rtl8723b_set_AP_FwWoWlanRelated_cmd to rtl8723b_set_ap_wowlan_cmd to maintain compatibility with call site. Issue found with Coccinelle. Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com> Link: https://lore.kernel.org/r/20190725052645.2372-5-nishkadg.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0528096df3
commit
7a9a7332b6
|
@ -1393,7 +1393,7 @@ static void rtl8723b_set_Fw_AP_Offload_Cmd(struct adapter *padapter, u8 bFuncEn)
|
|||
H2C_AP_OFFLOAD_LEN, u1H2CAPOffloadCtrlParm);
|
||||
}
|
||||
|
||||
static void rtl8723b_set_AP_FwWoWlan_cmd(struct adapter *padapter, u8 enable)
|
||||
void rtl8723b_set_ap_wowlan_cmd(struct adapter *padapter, u8 enable)
|
||||
{
|
||||
DBG_871X_LEVEL(_drv_always_, "+%s()+: enable =%d\n", __func__, enable);
|
||||
if (enable) {
|
||||
|
@ -1408,11 +1408,6 @@ static void rtl8723b_set_AP_FwWoWlan_cmd(struct adapter *padapter, u8 enable)
|
|||
DBG_871X_LEVEL(_drv_always_, "-%s()-\n", __func__);
|
||||
return ;
|
||||
}
|
||||
|
||||
void rtl8723b_set_ap_wowlan_cmd(struct adapter *padapter, u8 enable)
|
||||
{
|
||||
rtl8723b_set_AP_FwWoWlan_cmd(padapter, enable);
|
||||
}
|
||||
#endif /* CONFIG_AP_WOWLAN */
|
||||
|
||||
/* */
|
||||
|
|
Loading…
Reference in New Issue