mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 10:58:18 +07:00
staging: rtl8723au: Remove SetHwReg*() related code
Remove all references to this odd mux/demux pseudo hw register handling code. Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3d577f60da
commit
891d3decbb
@ -117,12 +117,6 @@ uint rtw_hal_deinit23a(struct rtw_adapter *padapter)
|
||||
return status;
|
||||
}
|
||||
|
||||
void rtw_hal_set_hwreg23a(struct rtw_adapter *padapter, u8 variable, u8 *val)
|
||||
{
|
||||
if (padapter->HalFunc.SetHwRegHandler)
|
||||
padapter->HalFunc.SetHwRegHandler(padapter, variable, val);
|
||||
}
|
||||
|
||||
void rtw23a_hal_get_hwreg(struct rtw_adapter *padapter, u8 variable, u8 *val)
|
||||
{
|
||||
if (padapter->HalFunc.GetHwRegHandler)
|
||||
|
@ -3132,15 +3132,6 @@ void hw_var_set_mlme_join(struct rtw_adapter *padapter, u8 type)
|
||||
#endif
|
||||
}
|
||||
|
||||
void SetHwReg8723A(struct rtw_adapter *padapter, u8 variable, u8 *val)
|
||||
{
|
||||
switch (variable) {
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void GetHwReg8723A(struct rtw_adapter *padapter, u8 variable, u8 *val)
|
||||
{
|
||||
struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter);
|
||||
|
@ -1496,20 +1496,6 @@ static void ReadAdapterInfo8723AU(struct rtw_adapter *Adapter)
|
||||
_ReadAdapterInfo8723AU(Adapter);
|
||||
}
|
||||
|
||||
/*
|
||||
* If variable not handled here,
|
||||
* some variables will be processed in SetHwReg8723A()
|
||||
*/
|
||||
static void SetHwReg8723AU(struct rtw_adapter *Adapter, u8 variable, u8 *val)
|
||||
{
|
||||
switch (variable) {
|
||||
default:
|
||||
SetHwReg8723A(Adapter, variable, val);
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* If variable not handled here,
|
||||
* some variables will be processed in GetHwReg8723A()
|
||||
@ -1796,7 +1782,6 @@ int rtl8723au_set_hal_ops(struct rtw_adapter *padapter)
|
||||
pHalFunc->init_default_value = &rtl8723au_init_default_value;
|
||||
pHalFunc->intf_chip_configure = &rtl8723au_interface_configure;
|
||||
pHalFunc->read_adapter_info = &ReadAdapterInfo8723AU;
|
||||
pHalFunc->SetHwRegHandler = &SetHwReg8723AU;
|
||||
pHalFunc->GetHwRegHandler = &GetHwReg8723AU;
|
||||
pHalFunc->GetHalDefVarHandler = &GetHalDefVar8192CUsb;
|
||||
pHalFunc->SetHalDefVarHandler = &SetHalDefVar8192CUsb;
|
||||
|
@ -126,8 +126,6 @@ struct hal_ops {
|
||||
|
||||
void (*hal_dm_watchdog)(struct rtw_adapter *padapter);
|
||||
|
||||
void (*SetHwRegHandler)(struct rtw_adapter *padapter,
|
||||
u8 variable, u8 *val);
|
||||
void (*GetHwRegHandler)(struct rtw_adapter *padapter,
|
||||
u8 variable, u8 *val);
|
||||
|
||||
@ -263,7 +261,6 @@ u32 rtw_hal_power_on23a(struct rtw_adapter *padapter);
|
||||
uint rtw_hal_init23a(struct rtw_adapter *padapter);
|
||||
uint rtw_hal_deinit23a(struct rtw_adapter *padapter);
|
||||
void rtw_hal_stop(struct rtw_adapter *padapter);
|
||||
void rtw_hal_set_hwreg23a(struct rtw_adapter *padapter, u8 variable, u8 *val);
|
||||
void rtw23a_hal_get_hwreg(struct rtw_adapter *padapter, u8 variable, u8 *val);
|
||||
|
||||
void rtw_hal_chip_configure23a(struct rtw_adapter *padapter);
|
||||
|
@ -548,7 +548,6 @@ void Hal_EfuseParseThermalMeter_8723A(struct rtw_adapter *padapter, u8 *hwinfo,
|
||||
void Hal_InitChannelPlan23a(struct rtw_adapter *padapter);
|
||||
|
||||
void rtl8723a_set_hal_ops(struct hal_ops *pHalFunc);
|
||||
void SetHwReg8723A(struct rtw_adapter *padapter, u8 variable, u8 *val);
|
||||
void GetHwReg8723A(struct rtw_adapter *padapter, u8 variable, u8 *val);
|
||||
#ifdef CONFIG_8723AU_BT_COEXIST
|
||||
void rtl8723a_SingleDualAntennaDetection(struct rtw_adapter *padapter);
|
||||
|
Loading…
Reference in New Issue
Block a user