staging: rtl8723au: Remove unused HAL wrappers around PHY register read/write calls
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
369074f071
commit
5d9edb5663
@ -227,19 +227,6 @@ void rtw_hal_add_ra_tid23a(struct rtw_adapter *padapter, u32 bitmap, u8 arg, u8
|
||||
padapter->HalFunc.Add_RateATid(padapter, bitmap, arg, rssi_level);
|
||||
}
|
||||
|
||||
u32 rtw_hal_read_rfreg23a(struct rtw_adapter *padapter, u32 eRFPath, u32 RegAddr, u32 BitMask)
|
||||
{
|
||||
u32 data = 0;
|
||||
if (padapter->HalFunc.read_rfreg)
|
||||
data = padapter->HalFunc.read_rfreg(padapter, eRFPath, RegAddr, BitMask);
|
||||
return data;
|
||||
}
|
||||
void rtw_hal_write_rfreg23a(struct rtw_adapter *padapter, u32 eRFPath, u32 RegAddr, u32 BitMask, u32 Data)
|
||||
{
|
||||
if (padapter->HalFunc.write_rfreg)
|
||||
padapter->HalFunc.write_rfreg(padapter, eRFPath, RegAddr, BitMask, Data);
|
||||
}
|
||||
|
||||
s32 rtw_hal_interrupt_handler23a(struct rtw_adapter *padapter)
|
||||
{
|
||||
if (padapter->HalFunc.interrupt_handler)
|
||||
|
@ -1733,9 +1733,6 @@ void rtl8723a_set_hal_ops(struct hal_ops *pHalFunc)
|
||||
|
||||
pHalFunc->Add_RateATid = &rtl8723a_add_rateatid;
|
||||
|
||||
pHalFunc->read_rfreg = &PHY_QueryRFReg;
|
||||
pHalFunc->write_rfreg = &PHY_SetRFReg;
|
||||
|
||||
/* Efuse related function */
|
||||
pHalFunc->EfusePowerSwitch = &Hal_EfusePowerSwitch;
|
||||
pHalFunc->ReadEFuse = &Hal_ReadEFuse;
|
||||
|
@ -117,11 +117,6 @@ struct hal_ops {
|
||||
s32 (*hal_xmitframe_enqueue)(struct rtw_adapter *padapter,
|
||||
struct xmit_frame *pxmitframe);
|
||||
|
||||
u32 (*read_rfreg)(struct rtw_adapter *padapter, u32 eRFPath,
|
||||
u32 RegAddr, u32 BitMask);
|
||||
void (*write_rfreg)(struct rtw_adapter *padapter, u32 eRFPath,
|
||||
u32 RegAddr, u32 BitMask, u32 Data);
|
||||
|
||||
void (*EfusePowerSwitch)(struct rtw_adapter *padapter, u8 bWrite,
|
||||
u8 PwrState);
|
||||
void (*ReadEFuse)(struct rtw_adapter *padapter, u8 efuseType,
|
||||
@ -235,9 +230,6 @@ void rtw_hal_clone_data(struct rtw_adapter *dst_padapter, struct rtw_adapter *sr
|
||||
|
||||
void rtw_hal_bcn_related_reg_setting23a(struct rtw_adapter *padapter);
|
||||
|
||||
u32 rtw_hal_read_rfreg23a(struct rtw_adapter *padapter, u32 eRFPath, u32 RegAddr, u32 BitMask);
|
||||
void rtw_hal_write_rfreg23a(struct rtw_adapter *padapter, u32 eRFPath, u32 RegAddr, u32 BitMask, u32 Data);
|
||||
|
||||
s32 rtw_hal_interrupt_handler23a(struct rtw_adapter *padapter);
|
||||
|
||||
void rtw_hal_set_bwmode23a(struct rtw_adapter *padapter,
|
||||
|
Loading…
Reference in New Issue
Block a user