aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/mlme.c
diff options
context:
space:
mode:
authorBen Greear <greearb@candelatech.com>2011-02-07 13:44:34 -0800
committerJohn W. Linville <linville@tuxdriver.com>2011-02-09 16:09:45 -0500
commit4d51e149a6231ea9cc210795cbc358a7c9a8e016 (patch)
tree94e929d18145e4873c1fc67b3bb583ebd795e765 /net/mac80211/mlme.c
parent8c79a61095936f81cb05e99062185cb987d524ab (diff)
downloadkernel_samsung_smdk4412-4d51e149a6231ea9cc210795cbc358a7c9a8e016.zip
kernel_samsung_smdk4412-4d51e149a6231ea9cc210795cbc358a7c9a8e016.tar.gz
kernel_samsung_smdk4412-4d51e149a6231ea9cc210795cbc358a7c9a8e016.tar.bz2
mac80211: Properly set work-item channel-type.
Some were indirectly set to NO_HT (zero), but I think it's better to explicitly set it in case the enum ever changes. In cfg.c, it seems the channel-type was just ignored (and thus always set to NO_HT). Signed-off-by: Ben Greear <greearb@candelatech.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r--net/mac80211/mlme.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index f77adf1..d89e878 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -2294,6 +2294,7 @@ int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
else
wk->type = IEEE80211_WORK_DIRECT_PROBE;
wk->chan = req->bss->channel;
+ wk->chan_type = NL80211_CHAN_NO_HT;
wk->sdata = sdata;
wk->done = ieee80211_probe_auth_done;
@@ -2443,6 +2444,7 @@ int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
memcpy(wk->assoc.prev_bssid, req->prev_bssid, ETH_ALEN);
wk->chan = req->bss->channel;
+ wk->chan_type = NL80211_CHAN_NO_HT;
wk->sdata = sdata;
wk->done = ieee80211_assoc_done;
if (!bss->dtim_period &&