diff options
author | Amitkumar Karwar <akarwar@marvell.com> | 2012-08-03 21:06:03 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-08-06 15:12:49 -0400 |
commit | b7525dbd075414ab2dc3742bacdc386f0f1223b2 (patch) | |
tree | 180803c1137456d50397a8e75dfc2afb3e0c35f9 /drivers/net | |
parent | ed1ea6f42ecedbbb3a8c4e0211ad683b8680eebe (diff) |
mwifiex: update max_chan_per_scan correctly for SSID scan
As per recent patch "658f37b mwifiex: scan less channels..."
less channels are scanned per scan command in associated state.
Default number of channels per scan command for normal scan are
already 4, but those are 14 for SSID specific scan operation.
This code change in this patch is required for SSID specific scan.
Signed-off-by: Amitkumar Karwar <akarwar@marvell.com>
Signed-off-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/mwifiex/scan.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/mwifiex/scan.c b/drivers/net/wireless/mwifiex/scan.c index 04dc7ca4ac22..3035412a0498 100644 --- a/drivers/net/wireless/mwifiex/scan.c +++ b/drivers/net/wireless/mwifiex/scan.c | |||
@@ -989,6 +989,8 @@ mwifiex_config_scan(struct mwifiex_private *priv, | |||
989 | *max_chan_per_scan = 2; | 989 | *max_chan_per_scan = 2; |
990 | else if (chan_num < MWIFIEX_LIMIT_3_CHANNELS_PER_SCAN_CMD) | 990 | else if (chan_num < MWIFIEX_LIMIT_3_CHANNELS_PER_SCAN_CMD) |
991 | *max_chan_per_scan = 3; | 991 | *max_chan_per_scan = 3; |
992 | else | ||
993 | *max_chan_per_scan = 4; | ||
992 | } | 994 | } |
993 | } | 995 | } |
994 | 996 | ||