mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-04 01:20:01 -04:00
staging: rtl8723au: Pull update_ramask call out of HAL wrapper layer
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
638443dcf4
commit
ac4cbc68dc
@@ -87,10 +87,8 @@ void rtw_hal_update_ra_mask23a(struct sta_info *psta, u8 rssi_level)
|
||||
#ifdef CONFIG_8723AU_AP_MODE
|
||||
add_RATid23a(padapter, psta, rssi_level);
|
||||
#endif
|
||||
} else {
|
||||
if (padapter->HalFunc.UpdateRAMaskHandler)
|
||||
padapter->HalFunc.UpdateRAMaskHandler(padapter, psta->mac_id, rssi_level);
|
||||
}
|
||||
} else
|
||||
rtl8723a_update_ramask(padapter, psta->mac_id, rssi_level);
|
||||
}
|
||||
|
||||
s32 rtw_hal_interrupt_handler23a(struct rtw_adapter *padapter)
|
||||
|
||||
@@ -4662,8 +4662,8 @@ bthci_StateConnected(struct rtw_adapter *padapter,
|
||||
|
||||
/* for rate adaptive */
|
||||
|
||||
if (padapter->HalFunc.UpdateRAMaskHandler)
|
||||
padapter->HalFunc.UpdateRAMaskHandler(padapter, MAX_FW_SUPPORT_MACID_NUM-1-EntryNum, 0);
|
||||
rtl8723a_update_ramask(padapter,
|
||||
MAX_FW_SUPPORT_MACID_NUM-1-EntryNum, 0);
|
||||
|
||||
HalSetBrateCfg23a(padapter, padapter->mlmepriv.cur_network.network.SupportedRates);
|
||||
BTDM_SetFwChnlInfo(padapter, RT_MEDIA_CONNECT);
|
||||
|
||||
@@ -1612,8 +1612,8 @@ static u8 SetHalDefVar8192CUsb(struct rtw_adapter *Adapter,
|
||||
return bResult;
|
||||
}
|
||||
|
||||
static void UpdateHalRAMask8192CUsb(struct rtw_adapter *padapter,
|
||||
u32 mac_id, u8 rssi_level)
|
||||
void rtl8723a_update_ramask(struct rtw_adapter *padapter,
|
||||
u32 mac_id, u8 rssi_level)
|
||||
{
|
||||
u8 init_rate = 0;
|
||||
u8 networkType, raid;
|
||||
@@ -1778,6 +1778,5 @@ int rtl8723au_set_hal_ops(struct rtw_adapter *padapter)
|
||||
|
||||
pHalFunc->GetHalDefVarHandler = &GetHalDefVar8192CUsb;
|
||||
pHalFunc->SetHalDefVarHandler = &SetHalDefVar8192CUsb;
|
||||
pHalFunc->UpdateRAMaskHandler = &UpdateHalRAMask8192CUsb;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -76,9 +76,6 @@ struct hal_ops {
|
||||
u8 (*SetHalDefVarHandler)(struct rtw_adapter *padapter,
|
||||
enum hal_def_variable eVariable,
|
||||
void *pValue);
|
||||
|
||||
void (*UpdateRAMaskHandler)(struct rtw_adapter *padapter,
|
||||
u32 mac_id, u8 rssi_level);
|
||||
};
|
||||
|
||||
enum rt_eeprom_type {
|
||||
|
||||
@@ -557,5 +557,7 @@ rtl8723a_readefuse(struct rtw_adapter *padapter,
|
||||
u8 efuseType, u16 _offset, u16 _size_byte, u8 *pbuf);
|
||||
u16 rtl8723a_EfuseGetCurrentSize_WiFi(struct rtw_adapter *padapter);
|
||||
u16 rtl8723a_EfuseGetCurrentSize_BT(struct rtw_adapter *padapter);
|
||||
void rtl8723a_update_ramask(struct rtw_adapter *padapter,
|
||||
u32 mac_id, u8 rssi_level);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user