aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless
diff options
context:
space:
mode:
authorHong Liu <hong.liu@intel.com>2005-08-31 06:14:27 -0400
committerJames Ketrenos <jketreno@linux.intel.com>2005-11-07 18:51:34 -0500
commitcdd1fa1e10a2231b5e24bde82550ac499aa5dcc4 (patch)
tree8c2a2ff794bf3e53b350f0ee7e8971f7d96aae32 /drivers/net/wireless
parent567deaf6d4a3372cd16b8719741ca3a6157c9615 (diff)
Card with WEP enabled and using shared-key auth will have firmware
error when it tries to auth to a WPA ap. The patch filters out WPA networks if the card is not wpa enabled when selecting network to associate to. Signed-off-by: Hong Liu <hong.liu@intel.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r--drivers/net/wireless/ipw2200.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/net/wireless/ipw2200.c b/drivers/net/wireless/ipw2200.c
index c9b306a8116c..e36a1fd9eefd 100644
--- a/drivers/net/wireless/ipw2200.c
+++ b/drivers/net/wireless/ipw2200.c
@@ -5510,6 +5510,15 @@ static int ipw_best_network(struct ipw_priv *priv,
5510 return 0; 5510 return 0;
5511 } 5511 }
5512 5512
5513 if (!priv->ieee->wpa_enabled && (network->wpa_ie_len > 0 ||
5514 network->rsn_ie_len > 0)) {
5515 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
5516 "because of WPA capability mismatch.\n",
5517 escape_essid(network->ssid, network->ssid_len),
5518 MAC_ARG(network->bssid));
5519 return 0;
5520 }
5521
5513 if ((priv->config & CFG_STATIC_BSSID) && 5522 if ((priv->config & CFG_STATIC_BSSID) &&
5514 memcmp(network->bssid, priv->bssid, ETH_ALEN)) { 5523 memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
5515 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded " 5524 IPW_DEBUG_ASSOC("Network '%s (" MAC_FMT ")' excluded "
@@ -6228,6 +6237,7 @@ static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6228{ 6237{
6229 /* This is called when wpa_supplicant loads and closes the driver 6238 /* This is called when wpa_supplicant loads and closes the driver
6230 * interface. */ 6239 * interface. */
6240 priv->ieee->wpa_enabled = value;
6231 return 0; 6241 return 0;
6232} 6242}
6233 6243