staging: rtl8723au: Fold rtw_set_802_11_authentication_mode23a() into cfg80211_rtw_co...
authorJes Sorensen <Jes.Sorensen@redhat.com>
Mon, 9 Jun 2014 13:16:38 +0000 (15:16 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Jun 2014 21:00:20 +0000 (14:00 -0700)
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/core/rtw_ioctl_set.c
drivers/staging/rtl8723au/include/rtw_ioctl_set.h
drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c

index 8d7674893e96b520926583ac3e70da47796d9121..5c3b5615410f5176c51bd7ba68dd18e401dcf90f 100644 (file)
@@ -343,30 +343,6 @@ exit:
        return res;
 }
 
-int rtw_set_802_11_authentication_mode23a(struct rtw_adapter* padapter,
-                                         enum ndis_802_11_auth_mode authmode)
-{
-       struct security_priv *psecuritypriv = &padapter->securitypriv;
-       int res;
-
-       RT_TRACE(_module_rtl871x_ioctl_set_c_, _drv_info_,
-                ("set_802_11_auth.mode(): mode =%x\n", authmode));
-
-       psecuritypriv->ndisauthtype = authmode;
-
-       RT_TRACE(_module_rtl871x_ioctl_set_c_, _drv_info_,
-                ("rtw_set_802_11_authentication_mode23a:"
-                 "psecuritypriv->ndisauthtype =%d",
-                 psecuritypriv->ndisauthtype));
-
-       if (psecuritypriv->ndisauthtype > 3)
-               psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_8021X;
-
-       res = rtw_set_auth23a(padapter, psecuritypriv);
-
-       return res;
-}
-
 /*
 * rtw_get_cur_max_rate23a -
 * @adapter: pointer to _adapter structure
index 040543bff1b21f7fed0d76656c629ca94ab413f6..bc5805a4013ac54f1b0c68afd06f7749bdaef2bb 100644 (file)
@@ -17,8 +17,6 @@
 
 #include <drv_types.h>
 
-int rtw_set_802_11_authentication_mode23a(struct rtw_adapter *pdapter,
-                                         enum ndis_802_11_auth_mode authmode);
 int rtw_set_802_11_bssid23a_list_scan(struct rtw_adapter *padapter,
                                      struct cfg80211_ssid *pssid,
                                      int ssid_max_num);
index c116b21a3ce0c655fa2ffb596505bef61a05dc54..062841674fe8190f0c06b7f3f32405443f7c2a57 100644 (file)
@@ -1987,7 +1987,6 @@ static int cfg80211_rtw_connect(struct wiphy *wiphy, struct net_device *ndev,
        int ret = 0;
        struct list_head *phead, *plist, *ptmp;
        struct wlan_network *pnetwork = NULL;
-       enum ndis_802_11_auth_mode authmode;
        struct cfg80211_ssid ndis_ssid;
        u8 *dst_ssid;
        u8 *src_ssid;
@@ -2198,8 +2197,13 @@ static int cfg80211_rtw_connect(struct wiphy *wiphy, struct net_device *ndev,
                        goto exit;
        }
 
-       authmode = psecuritypriv->ndisauthtype;
-       rtw_set_802_11_authentication_mode23a(padapter, authmode);
+       if (psecuritypriv->ndisauthtype > 3)
+               psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_8021X;
+
+       if (rtw_set_auth23a(padapter, psecuritypriv) != _SUCCESS) {
+               ret = -EBUSY;
+               goto exit;
+       }
 
        /* rtw_set_802_11_encryption_mode(padapter,
           padapter->securitypriv.ndisencryptstatus); */