staging: rtl8723au: rtw_get_bcn_info23a(): Use capability from wlan_bssid_ex
authorJes Sorensen <Jes.Sorensen@redhat.com>
Thu, 19 Jun 2014 09:37:32 +0000 (11:37 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 Jun 2014 20:08:51 +0000 (13:08 -0700)
This eliminates yet another user of rtw_get_capability23a_from_ie()

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/core/rtw_ieee80211.c

index 442bdef..d60fb3c 100644 (file)
@@ -770,15 +770,12 @@ static int rtw_get_cipher_info(struct wlan_network *pnetwork)
 
 void rtw_get_bcn_info23a(struct wlan_network *pnetwork)
 {
-       unsigned short cap;
        u8 bencrypt = 0;
        int pie_len, ie_offset;
        u8 *pie;
        const u8 *p;
 
-       cap = get_unaligned_le16(
-               rtw_get_capability23a_from_ie(pnetwork->network.IEs));
-       if (cap & WLAN_CAPABILITY_PRIVACY) {
+       if (pnetwork->network.capability & WLAN_CAPABILITY_PRIVACY) {
                bencrypt = 1;
                pnetwork->network.Privacy = 1;
        } else