mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
staging: rtl8723bs: Remove function pointer intf_chip_configure
Remove function pointer intf_chip_configure and use rtl8723bs_interface_configure directly to increase readability. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/d542f172438c333c015b87376a20645eeeae1b99.1727966761.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
218fcc250b
commit
f6faa9db0f
|
|
@ -9,8 +9,7 @@
|
|||
|
||||
void rtw_hal_chip_configure(struct adapter *padapter)
|
||||
{
|
||||
if (padapter->HalFunc.intf_chip_configure)
|
||||
padapter->HalFunc.intf_chip_configure(padapter);
|
||||
rtl8723bs_interface_configure(padapter);
|
||||
}
|
||||
|
||||
void rtw_hal_read_chip_info(struct adapter *padapter)
|
||||
|
|
|
|||
|
|
@ -950,7 +950,7 @@ void rtl8723bs_init_default_value(struct adapter *padapter)
|
|||
pHalData->SdioRxFIFOCnt = 0;
|
||||
}
|
||||
|
||||
static void rtl8723bs_interface_configure(struct adapter *padapter)
|
||||
void rtl8723bs_interface_configure(struct adapter *padapter)
|
||||
{
|
||||
struct hal_com_data *pHalData = GET_HAL_DATA(padapter);
|
||||
struct dvobj_priv *pdvobjpriv = adapter_to_dvobj(padapter);
|
||||
|
|
@ -1259,7 +1259,6 @@ void rtl8723bs_set_hal_ops(struct adapter *padapter)
|
|||
|
||||
rtl8723b_set_hal_ops(pHalFunc);
|
||||
|
||||
pHalFunc->intf_chip_configure = &rtl8723bs_interface_configure;
|
||||
pHalFunc->read_adapter_info = &ReadAdapterInfo8723BS;
|
||||
|
||||
pHalFunc->enable_interrupt = &EnableInterrupt8723BSdio;
|
||||
|
|
|
|||
|
|
@ -162,8 +162,6 @@ enum hal_intf_ps_func {
|
|||
typedef s32 (*c2h_id_filter)(u8 *c2h_evt);
|
||||
|
||||
struct hal_ops {
|
||||
void (*intf_chip_configure)(struct adapter *padapter);
|
||||
|
||||
void (*read_adapter_info)(struct adapter *padapter);
|
||||
|
||||
void (*enable_interrupt)(struct adapter *padapter);
|
||||
|
|
|
|||
|
|
@ -89,5 +89,6 @@ void rtl8723b_process_phy_info(struct adapter *padapter, void *prframe);
|
|||
|
||||
void rtl8723b_read_chip_version(struct adapter *padapter);
|
||||
void rtl8723bs_init_default_value(struct adapter *padapter);
|
||||
void rtl8723bs_interface_configure(struct adapter *padapter);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user