summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/mwifiex
diff options
context:
space:
mode:
authorAvinash Patil2014-09-12 16:38:53 +0200
committerJohn W. Linville2014-09-15 21:00:51 +0200
commita9c1c89eea11884243825d473fd3991d943ffc65 (patch)
tree24fbde261693da15ebfcf573375fa7db1cbd8b31 /drivers/net/wireless/mwifiex
parentmwifiex: minor cleanup in multiport aggregation (diff)
downloadkernel-qcow2-linux-a9c1c89eea11884243825d473fd3991d943ffc65.tar.gz
kernel-qcow2-linux-a9c1c89eea11884243825d473fd3991d943ffc65.tar.xz
kernel-qcow2-linux-a9c1c89eea11884243825d473fd3991d943ffc65.zip
mwifiex: set passive scan type for scan requests with no ssid
It was observed that station would sent probe request even when scan type has been set as passive during iw scan. This was happening because driver sets passive scan type only when channel has IEEE80211_CHAN_NO_IR flag set. Along with this, add condition to check if no ssids are specified in scan request so as to mark such scan request passive. Signed-off-by: Avinash Patil <patila@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/mwifiex')
-rw-r--r--drivers/net/wireless/mwifiex/cfg80211.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/mwifiex/cfg80211.c b/drivers/net/wireless/mwifiex/cfg80211.c
index c4723b0f5757..740f7d08a131 100644
--- a/drivers/net/wireless/mwifiex/cfg80211.c
+++ b/drivers/net/wireless/mwifiex/cfg80211.c
@@ -1981,7 +1981,7 @@ mwifiex_cfg80211_scan(struct wiphy *wiphy,
user_scan_cfg->chan_list[i].chan_number = chan->hw_value;
user_scan_cfg->chan_list[i].radio_type = chan->band;
- if (chan->flags & IEEE80211_CHAN_NO_IR)
+ if ((chan->flags & IEEE80211_CHAN_NO_IR) || !request->n_ssids)
user_scan_cfg->chan_list[i].scan_type =
MWIFIEX_SCAN_TYPE_PASSIVE;
else