mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
staging: rtl8723au: Remove unused hal interface for accessing bb regs
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1c9f76d474
commit
46ea772699
@ -255,19 +255,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_bbreg23a(struct rtw_adapter *padapter, u32 RegAddr, u32 BitMask)
|
||||
{
|
||||
u32 data = 0;
|
||||
if (padapter->HalFunc.read_bbreg)
|
||||
data = padapter->HalFunc.read_bbreg(padapter, RegAddr, BitMask);
|
||||
return data;
|
||||
}
|
||||
void rtw_hal_write_bbreg23a(struct rtw_adapter *padapter, u32 RegAddr, u32 BitMask, u32 Data)
|
||||
{
|
||||
if (padapter->HalFunc.write_bbreg)
|
||||
padapter->HalFunc.write_bbreg(padapter, RegAddr, BitMask, Data);
|
||||
}
|
||||
|
||||
u32 rtw_hal_read_rfreg23a(struct rtw_adapter *padapter, u32 eRFPath, u32 RegAddr, u32 BitMask)
|
||||
{
|
||||
u32 data = 0;
|
||||
|
@ -1739,8 +1739,6 @@ void rtl8723a_set_hal_ops(struct hal_ops *pHalFunc)
|
||||
|
||||
pHalFunc->Add_RateATid = &rtl8723a_add_rateatid;
|
||||
|
||||
pHalFunc->read_bbreg = &PHY_QueryBBReg;
|
||||
pHalFunc->write_bbreg = &PHY_SetBBReg;
|
||||
pHalFunc->read_rfreg = &PHY_QueryRFReg;
|
||||
pHalFunc->write_rfreg = &PHY_SetRFReg;
|
||||
|
||||
|
@ -126,10 +126,6 @@ struct hal_ops {
|
||||
s32 (*hal_xmitframe_enqueue)(struct rtw_adapter *padapter,
|
||||
struct xmit_frame *pxmitframe);
|
||||
|
||||
u32 (*read_bbreg)(struct rtw_adapter *padapter, u32 RegAddr,
|
||||
u32 BitMask);
|
||||
void (*write_bbreg)(struct rtw_adapter *padapter, u32 RegAddr,
|
||||
u32 BitMask, u32 Data);
|
||||
u32 (*read_rfreg)(struct rtw_adapter *padapter, u32 eRFPath,
|
||||
u32 RegAddr, u32 BitMask);
|
||||
void (*write_rfreg)(struct rtw_adapter *padapter, u32 eRFPath,
|
||||
@ -264,8 +260,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_bbreg23a(struct rtw_adapter *padapter, u32 RegAddr, u32 BitMask);
|
||||
void rtw_hal_write_bbreg23a(struct rtw_adapter *padapter, u32 RegAddr, u32 BitMask, u32 Data);
|
||||
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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user