diff options
author | Ben Greear <greearb@candelatech.com> | 2011-02-07 21:44:34 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-02-09 21:09:45 (GMT) |
commit | 4d51e149a6231ea9cc210795cbc358a7c9a8e016 (patch) | |
tree | 94e929d18145e4873c1fc67b3bb583ebd795e765 /net/mac80211/cfg.c | |
parent | 8c79a61095936f81cb05e99062185cb987d524ab (diff) | |
download | linux-4d51e149a6231ea9cc210795cbc358a7c9a8e016.tar.xz |
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/cfg.c')
-rw-r--r-- | net/mac80211/cfg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index 845c76d..f7a1f08 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c @@ -1862,6 +1862,7 @@ static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct net_device *dev, wk->type = IEEE80211_WORK_OFFCHANNEL_TX; wk->chan = chan; + wk->chan_type = channel_type; wk->sdata = sdata; wk->done = ieee80211_offchan_tx_done; wk->offchan_tx.frame = skb; |