mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 12:33:18 -04:00
staging: rtl8723bs: Remove function pointer GetHwRegHandler
Remove function pointer GetHwRegHandler and use GetHwReg8723BS directly to increase readability. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/ace0c1f47d27d536083787a1334bf6cfafb18c03.1730619982.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
5d28dfca5d
commit
ad99ca897f
@@ -113,8 +113,7 @@ void rtw_hal_set_hwreg(struct adapter *padapter, u8 variable, u8 *val)
|
||||
|
||||
void rtw_hal_get_hwreg(struct adapter *padapter, u8 variable, u8 *val)
|
||||
{
|
||||
if (padapter->HalFunc.GetHwRegHandler)
|
||||
padapter->HalFunc.GetHwRegHandler(padapter, variable, val);
|
||||
GetHwReg8723BS(padapter, variable, val);
|
||||
}
|
||||
|
||||
void rtw_hal_set_hwreg_with_buf(struct adapter *padapter, u8 variable, u8 *pbuf, int len)
|
||||
|
||||
@@ -1185,7 +1185,7 @@ void SetHwReg8723BS(struct adapter *padapter, u8 variable, u8 *val)
|
||||
* If variable not handled here,
|
||||
* some variables will be processed in GetHwReg8723B()
|
||||
*/
|
||||
static void GetHwReg8723BS(struct adapter *padapter, u8 variable, u8 *val)
|
||||
void GetHwReg8723BS(struct adapter *padapter, u8 variable, u8 *val)
|
||||
{
|
||||
switch (variable) {
|
||||
case HW_VAR_CPWM:
|
||||
@@ -1259,7 +1259,6 @@ void rtl8723bs_set_hal_ops(struct adapter *padapter)
|
||||
|
||||
rtl8723b_set_hal_ops(pHalFunc);
|
||||
|
||||
pHalFunc->GetHwRegHandler = &GetHwReg8723BS;
|
||||
pHalFunc->SetHwRegHandlerWithBuf = &SetHwRegWithBuf8723B;
|
||||
pHalFunc->GetHalDefVarHandler = &GetHalDefVar8723BSDIO;
|
||||
pHalFunc->SetHalDefVarHandler = &SetHalDefVar8723BSDIO;
|
||||
|
||||
@@ -170,8 +170,6 @@ struct hal_ops {
|
||||
void (*hal_dm_watchdog)(struct adapter *padapter);
|
||||
void (*hal_dm_watchdog_in_lps)(struct adapter *padapter);
|
||||
|
||||
void (*GetHwRegHandler)(struct adapter *padapter, u8 variable, u8 *val);
|
||||
|
||||
void (*SetHwRegHandlerWithBuf)(struct adapter *padapter, u8 variable, u8 *pbuf, int len);
|
||||
|
||||
u8 (*GetHalDefVarHandler)(struct adapter *padapter, enum hal_def_variable eVariable, void *pValue);
|
||||
@@ -318,5 +316,6 @@ s32 rtw_hal_macid_wakeup(struct adapter *padapter, u32 macid);
|
||||
s32 rtw_hal_fill_h2c_cmd(struct adapter *, u8 ElementID, u32 CmdLen, u8 *pCmdBuffer);
|
||||
|
||||
void SetHwReg8723BS(struct adapter *padapter, u8 variable, u8 *val);
|
||||
void GetHwReg8723BS(struct adapter *padapter, u8 variable, u8 *val);
|
||||
|
||||
#endif /* __HAL_INTF_H__ */
|
||||
|
||||
Reference in New Issue
Block a user