diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2015-11-26 20:49:38 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-12-04 14:43:32 +0100 |
commit | c39b336deb2ec92751488531a05fd14bbe7fa89e (patch) | |
tree | d0195e700b9bde7d2d2bd5c08595341a09c26cab /net/mac80211 | |
parent | 1aeb135f84fe40cf6ba1e3610ad2ca4cb9628089 (diff) | |
download | op-kernel-dev-c39b336deb2ec92751488531a05fd14bbe7fa89e.zip op-kernel-dev-c39b336deb2ec92751488531a05fd14bbe7fa89e.tar.gz |
mac80211: Allow a STA to join an IBSS with 80+80 MHz channel
While it was possible to create an IBSS with 80+80 MHz channel, joining
such an IBSS resulted in falling back to 20 MHz channel with VHT
disabled due to a missing switch case for 80+80.
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/ibss.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/ibss.c b/net/mac80211/ibss.c index 337bb5d..f7fc0e0 100644 --- a/net/mac80211/ibss.c +++ b/net/mac80211/ibss.c @@ -428,6 +428,7 @@ static void ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata, chandef.width = sdata->u.ibss.chandef.width; break; case NL80211_CHAN_WIDTH_80: + case NL80211_CHAN_WIDTH_80P80: case NL80211_CHAN_WIDTH_160: chandef = sdata->u.ibss.chandef; chandef.chan = cbss->channel; |