mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-22 06:32:05 -05:00
staging: rtl8723bs: Remove function pointer hal_dm_watchdog_in_lps
Remove function pointer hal_dm_watchdog_in_lps and use rtl8723b_HalDmWatchDog_in_LPS directly to increase readability. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/313978b8c0f331200c1a8dc3382b01088930c0e8.1730749680.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d8e9bf2a3a
commit
2ca601a795
@@ -291,8 +291,7 @@ void rtw_hal_dm_watchdog(struct adapter *padapter)
|
||||
void rtw_hal_dm_watchdog_in_lps(struct adapter *padapter)
|
||||
{
|
||||
if (adapter_to_pwrctl(padapter)->fw_current_in_ps_mode) {
|
||||
if (padapter->HalFunc.hal_dm_watchdog_in_lps)
|
||||
padapter->HalFunc.hal_dm_watchdog_in_lps(padapter); /* this function caller is in interrupt context */
|
||||
rtl8723b_HalDmWatchDog_in_LPS(padapter); /* this function caller is in interrupt context */
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1744,9 +1744,6 @@ void UpdateHalRAMask8723B(struct adapter *padapter, u32 mac_id, u8 rssi_level)
|
||||
|
||||
void rtl8723b_set_hal_ops(struct hal_ops *pHalFunc)
|
||||
{
|
||||
pHalFunc->hal_dm_watchdog_in_lps = &rtl8723b_HalDmWatchDog_in_LPS;
|
||||
|
||||
|
||||
pHalFunc->SetBeaconRelatedRegistersHandler = &rtl8723b_SetBeaconRelatedRegisters;
|
||||
|
||||
pHalFunc->Add_RateATid = &rtl8723b_Add_RateATid;
|
||||
|
||||
@@ -162,8 +162,6 @@ enum hal_intf_ps_func {
|
||||
typedef s32 (*c2h_id_filter)(u8 *c2h_evt);
|
||||
|
||||
struct hal_ops {
|
||||
void (*hal_dm_watchdog_in_lps)(struct adapter *padapter);
|
||||
|
||||
void (*SetHalODMVarHandler)(struct adapter *padapter, enum hal_odm_variable eVariable, void *pValue1, bool bSet);
|
||||
|
||||
void (*SetBeaconRelatedRegistersHandler)(struct adapter *padapter);
|
||||
|
||||
Reference in New Issue
Block a user