]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ath6kl: Fix bug in setting dot11_auth_mode in AP mode
authorVasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Fri, 11 Nov 2011 15:03:01 +0000 (20:33 +0530)
committerKalle Valo <kvalo@qca.qualcomm.com>
Sun, 13 Nov 2011 10:44:28 +0000 (12:44 +0200)
OPEN_AUTH is passed as dot11_auth_mode by default, this would
affect the AP mode when configured with shared authentication
type. Assign appropriate auth type to fix this from driver.
A patch in wpa_supplicant (wpa_supplicant: Set configured auth_algs)
is also needed to fix this.

Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath6kl/cfg80211.c

index 0ef844220278008b198c9c49f64a7e9c83313bdf..7cf983bf5ab87e6be948e76902d9e8abeb524fa7 100644 (file)
@@ -2006,7 +2006,7 @@ static int ath6kl_ap_beacon(struct wiphy *wiphy, struct net_device *dev,
        int ies_len;
        struct wmi_connect_cmd p;
        int res;
-       int i;
+       int i, ret;
 
        ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: add=%d\n", __func__, add);
 
@@ -2064,7 +2064,9 @@ static int ath6kl_ap_beacon(struct wiphy *wiphy, struct net_device *dev,
        if (info->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE)
                return -EOPNOTSUPP; /* TODO */
 
-       vif->dot11_auth_mode = OPEN_AUTH;
+       ret = ath6kl_set_auth_type(vif, info->auth_type);
+       if (ret)
+               return ret;
 
        memset(&p, 0, sizeof(p));