mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 21:15:53 +02:00
staging: rtl8723bs: Remove function pointer init_default_value
Remove function pointer init_default_value and use rtl8723bs_init_default_value directly to increase readability. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/d0bb58235d54d1c7e4806c5ea3a50dbf77c293e7.1727966761.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
484b521f10
commit
218fcc250b
|
|
@ -26,8 +26,7 @@ void rtw_hal_read_chip_version(struct adapter *padapter)
|
|||
|
||||
void rtw_hal_def_value_init(struct adapter *padapter)
|
||||
{
|
||||
if (padapter->HalFunc.init_default_value)
|
||||
padapter->HalFunc.init_default_value(padapter);
|
||||
rtl8723bs_init_default_value(padapter);
|
||||
}
|
||||
|
||||
void rtw_hal_free_data(struct adapter *padapter)
|
||||
|
|
|
|||
|
|
@ -937,7 +937,7 @@ u32 rtl8723bs_hal_deinit(struct adapter *padapter)
|
|||
return _SUCCESS;
|
||||
}
|
||||
|
||||
static void rtl8723bs_init_default_value(struct adapter *padapter)
|
||||
void rtl8723bs_init_default_value(struct adapter *padapter)
|
||||
{
|
||||
struct hal_com_data *pHalData;
|
||||
|
||||
|
|
@ -1259,7 +1259,6 @@ void rtl8723bs_set_hal_ops(struct adapter *padapter)
|
|||
|
||||
rtl8723b_set_hal_ops(pHalFunc);
|
||||
|
||||
pHalFunc->init_default_value = &rtl8723bs_init_default_value;
|
||||
pHalFunc->intf_chip_configure = &rtl8723bs_interface_configure;
|
||||
pHalFunc->read_adapter_info = &ReadAdapterInfo8723BS;
|
||||
|
||||
|
|
|
|||
|
|
@ -162,8 +162,6 @@ enum hal_intf_ps_func {
|
|||
typedef s32 (*c2h_id_filter)(u8 *c2h_evt);
|
||||
|
||||
struct hal_ops {
|
||||
void (*init_default_value)(struct adapter *padapter);
|
||||
|
||||
void (*intf_chip_configure)(struct adapter *padapter);
|
||||
|
||||
void (*read_adapter_info)(struct adapter *padapter);
|
||||
|
|
|
|||
|
|
@ -88,5 +88,6 @@ void rtl8723b_query_rx_phy_status(union recv_frame *prframe, struct phy_stat *pp
|
|||
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);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user