diff options
author | Luis Carlos Cobo Rus <luisca@cozybit.com> | 2007-05-30 12:16:13 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-06-12 14:02:32 -0400 |
commit | fff47f108d7bd9f80b223cd187e09dbb0cb89114 (patch) | |
tree | 763186927ec0e4720d87fedffb4fa8528d7788ab /drivers/net | |
parent | b8bedefd8fe589ff87a681e20583c8317030491d (diff) |
[PATCH] libertas: deauthenticate from AP in channel switch
This avoids channel mismatch between driver and firmware in case we change
channel while associated to an AP.
Signed-off-by: Luis Carlos Cobo Rus <luisca@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/libertas/assoc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/wireless/libertas/assoc.c b/drivers/net/wireless/libertas/assoc.c index 06a90b42a451..f67efa0815fe 100644 --- a/drivers/net/wireless/libertas/assoc.c +++ b/drivers/net/wireless/libertas/assoc.c | |||
@@ -411,6 +411,11 @@ static int should_deauth_infrastructure(wlan_adapter *adapter, | |||
411 | return 1; | 411 | return 1; |
412 | } | 412 | } |
413 | 413 | ||
414 | if (test_bit(ASSOC_FLAG_CHANNEL, &assoc_req->flags)) { | ||
415 | lbs_deb_assoc("Deauthenticating due to channel switch.\n"); | ||
416 | return 1; | ||
417 | } | ||
418 | |||
414 | /* FIXME: deal with 'auto' mode somehow */ | 419 | /* FIXME: deal with 'auto' mode somehow */ |
415 | if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) { | 420 | if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) { |
416 | if (assoc_req->mode != IW_MODE_INFRA) | 421 | if (assoc_req->mode != IW_MODE_INFRA) |