aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/libertas/assoc.c
diff options
context:
space:
mode:
authorHolger Schurig <hs4233@mail.mn-solutions.de>2007-08-02 13:05:32 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:49:58 -0400
commit6e22a855b27ddc0725c134cc428ee668e56ac9f8 (patch)
tree8edfdf69eb5aecc10a358c2ea66e782614d85c78 /drivers/net/wireless/libertas/assoc.c
parentfdde7084e033263f48d26d5b24ecf626aed29b5b (diff)
[PATCH] libertas: remove adapter->prescan
The value 1 was assigned to it and there was nowhere any code that would have changed that to 0. Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/assoc.c')
-rw-r--r--drivers/net/wireless/libertas/assoc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/wireless/libertas/assoc.c b/drivers/net/wireless/libertas/assoc.c
index 5fdc96f289b8..ffeec2fa60ae 100644
--- a/drivers/net/wireless/libertas/assoc.c
+++ b/drivers/net/wireless/libertas/assoc.c
@@ -57,10 +57,8 @@ static int assoc_helper_essid(wlan_private *priv,
57 lbs_deb_assoc("New SSID requested: '%s'\n", 57 lbs_deb_assoc("New SSID requested: '%s'\n",
58 escape_essid(assoc_req->ssid, assoc_req->ssid_len)); 58 escape_essid(assoc_req->ssid, assoc_req->ssid_len));
59 if (assoc_req->mode == IW_MODE_INFRA) { 59 if (assoc_req->mode == IW_MODE_INFRA) {
60 if (adapter->prescan) { 60 libertas_send_specific_ssid_scan(priv, assoc_req->ssid,
61 libertas_send_specific_ssid_scan(priv, assoc_req->ssid, 61 assoc_req->ssid_len, 0);
62 assoc_req->ssid_len, 0);
63 }
64 62
65 bss = libertas_find_ssid_in_list(adapter, assoc_req->ssid, 63 bss = libertas_find_ssid_in_list(adapter, assoc_req->ssid,
66 assoc_req->ssid_len, NULL, IW_MODE_INFRA, channel); 64 assoc_req->ssid_len, NULL, IW_MODE_INFRA, channel);