ipw2200: make association only if SSID is known.
authorAlexey Fisher <bug-track@fisher-privat.net>
Thu, 6 Nov 2008 08:51:16 +0000 (09:51 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 21 Nov 2008 16:06:06 +0000 (11:06 -0500)
'iwconfig eth1 channel 6' would trigger association to _something_,
which is wrong.  Changing the channel should (and does) trigger reassociation,
but only if there is an SSID to associate with.

Signed-off-by: Alexey Fisher <bug-track@fisher-privat.net>
Acked-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ipw2200.c

index 051ae92..6ca0f1c 100644 (file)
@@ -7575,8 +7575,7 @@ static int ipw_associate(void *data)
        }
 
        if (!(priv->config & CFG_ASSOCIATE) &&
-           !(priv->config & (CFG_STATIC_ESSID |
-                             CFG_STATIC_CHANNEL | CFG_STATIC_BSSID))) {
+           !(priv->config & (CFG_STATIC_ESSID | CFG_STATIC_BSSID))) {
                IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
                return 0;
        }