diff options
author | Johannes Berg <johannes.berg@intel.com> | 2011-10-04 09:07:33 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-10-11 16:41:07 -0400 |
commit | dcd83976bea3ae3bc0822ed26cf200d9d6203121 (patch) | |
tree | de9edc5d588be582ad5c07f400094beedd5c170b | |
parent | 5dde8e174909eee6945d5b294fad443c5bf094eb (diff) |
mac80211: pass no-CCK flag through to HW scan
This is needed so that offloaded scan can do the
right thing. Without this patch, the no_cck flag
contains random values from the kernel heap.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | net/mac80211/scan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/scan.c b/net/mac80211/scan.c index 830e60f65779..397343a59275 100644 --- a/net/mac80211/scan.c +++ b/net/mac80211/scan.c | |||
@@ -254,6 +254,7 @@ static bool ieee80211_prep_hw_scan(struct ieee80211_local *local) | |||
254 | req->ie, req->ie_len, band, | 254 | req->ie, req->ie_len, band, |
255 | req->rates[band], 0); | 255 | req->rates[band], 0); |
256 | local->hw_scan_req->ie_len = ielen; | 256 | local->hw_scan_req->ie_len = ielen; |
257 | local->hw_scan_req->no_cck = req->no_cck; | ||
257 | 258 | ||
258 | return true; | 259 | return true; |
259 | } | 260 | } |