staging: rtl8723au: Remove last users of rtw_get_capability*() functions
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0396416f54
commit
a94e12b183
|
@ -773,7 +773,7 @@ static void start_bss_network(struct rtw_adapter *padapter, u8 *pbuf)
|
|||
update_wireless_mode23a(padapter);
|
||||
|
||||
/* udpate capability after cur_wireless_mode updated */
|
||||
update_capinfo23a(padapter, rtw_get_capability23a(pnetwork));
|
||||
update_capinfo23a(padapter, pnetwork->capability);
|
||||
|
||||
/* let pnetwork_mlmeext == pnetwork_mlme. */
|
||||
memcpy(pnetwork_mlmeext, pnetwork, pnetwork->Length);
|
||||
|
|
|
@ -312,20 +312,6 @@ void rtw23a_roaming(struct rtw_adapter *padapter,
|
|||
spin_unlock_bh(&pmlmepriv->lock);
|
||||
}
|
||||
|
||||
__le16 *rtw_get_capability23a_from_ie(u8 *ie)
|
||||
{
|
||||
return (__le16 *)(ie + 8 + 2);
|
||||
}
|
||||
|
||||
u16 rtw_get_capability23a(struct wlan_bssid_ex *bss)
|
||||
{
|
||||
u16 val;
|
||||
|
||||
memcpy(&val, rtw_get_capability23a_from_ie(bss->IEs), 2);
|
||||
|
||||
return le16_to_cpu(val);
|
||||
}
|
||||
|
||||
__le16 *rtw_get_beacon_interval23a_from_ie(u8 *ie)
|
||||
{
|
||||
return (__le16 *)(ie + 8);
|
||||
|
|
|
@ -4417,7 +4417,7 @@ static void start_create_ibss(struct rtw_adapter* padapter)
|
|||
update_wireless_mode23a(padapter);
|
||||
|
||||
/* udpate capability */
|
||||
caps = rtw_get_capability23a(pnetwork);
|
||||
caps = pnetwork->capability;
|
||||
update_capinfo23a(padapter, caps);
|
||||
if (caps & WLAN_CAPABILITY_IBSS) { /* adhoc master */
|
||||
rtl8723a_set_sec_cfg(padapter, 0xcf);
|
||||
|
@ -4472,7 +4472,7 @@ static void start_clnt_join(struct rtw_adapter* padapter)
|
|||
update_wireless_mode23a(padapter);
|
||||
|
||||
/* udpate capability */
|
||||
caps = rtw_get_capability23a(pnetwork);
|
||||
caps = pnetwork->capability;
|
||||
update_capinfo23a(padapter, caps);
|
||||
if (caps & WLAN_CAPABILITY_ESS) {
|
||||
/* switch channel */
|
||||
|
|
|
@ -1083,7 +1083,7 @@ bool is_ap_in_tkip23a(struct rtw_adapter *padapter)
|
|||
bcn_fixed_size = offsetof(struct ieee80211_mgmt, u.beacon.variable) -
|
||||
offsetof(struct ieee80211_mgmt, u.beacon);
|
||||
|
||||
if (rtw_get_capability23a(cur_network) & WLAN_CAPABILITY_PRIVACY) {
|
||||
if (cur_network->capability & WLAN_CAPABILITY_PRIVACY) {
|
||||
for (i = bcn_fixed_size; i < pmlmeinfo->network.IELength;) {
|
||||
p = pmlmeinfo->network.IEs + i;
|
||||
|
||||
|
@ -1118,7 +1118,7 @@ bool should_forbid_n_rate23a(struct rtw_adapter * padapter)
|
|||
bcn_fixed_size = offsetof(struct ieee80211_mgmt, u.beacon.variable) -
|
||||
offsetof(struct ieee80211_mgmt, u.beacon);
|
||||
|
||||
if (rtw_get_capability23a(cur_network) & WLAN_CAPABILITY_PRIVACY) {
|
||||
if (cur_network->capability & WLAN_CAPABILITY_PRIVACY) {
|
||||
for (i = bcn_fixed_size; i < cur_network->IELength;) {
|
||||
p = cur_network->IEs + i;
|
||||
|
||||
|
@ -1161,7 +1161,7 @@ bool is_ap_in_wep23a(struct rtw_adapter *padapter)
|
|||
bcn_fixed_size = offsetof(struct ieee80211_mgmt, u.beacon.variable) -
|
||||
offsetof(struct ieee80211_mgmt, u.beacon);
|
||||
|
||||
if (rtw_get_capability23a(cur_network) & WLAN_CAPABILITY_PRIVACY) {
|
||||
if (cur_network->capability & WLAN_CAPABILITY_PRIVACY) {
|
||||
for (i = bcn_fixed_size; i < pmlmeinfo->network.IELength;) {
|
||||
p = pmlmeinfo->network.IEs + i;
|
||||
|
||||
|
|
|
@ -310,7 +310,6 @@ static inline void clr_fwstate_ex(struct mlme_priv *pmlmepriv, int state)
|
|||
spin_unlock_bh(&pmlmepriv->lock);
|
||||
}
|
||||
|
||||
u16 rtw_get_capability23a(struct wlan_bssid_ex *bss);
|
||||
void rtw_disconnect_hdl23a_under_linked(struct rtw_adapter *adapter,
|
||||
struct sta_info *psta, u8 free_assoc);
|
||||
void rtw_generate_random_ibss23a(u8 *pibss);
|
||||
|
@ -349,7 +348,6 @@ int rtw_if_up23a(struct rtw_adapter *padapter);
|
|||
|
||||
int rtw_linked_check(struct rtw_adapter *padapter);
|
||||
|
||||
__le16 *rtw_get_capability23a_from_ie(u8 *ie);
|
||||
__le16 *rtw_get_beacon_interval23a_from_ie(u8 *ie);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue