diff options
author | Johannes Berg <johannes.berg@intel.com> | 2012-11-22 14:11:39 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2012-11-27 11:56:07 +0100 |
commit | f2d9d270c15ae0139b54a7e7466d738327e97e03 (patch) | |
tree | f2a758596a1393ad204576e93c8c6c9022156875 /net/mac80211/ieee80211_i.h | |
parent | 9f5e8f6efc7c2601136b27d9c7325c245f8fd19a (diff) | |
download | op-kernel-dev-f2d9d270c15ae0139b54a7e7466d738327e97e03.zip op-kernel-dev-f2d9d270c15ae0139b54a7e7466d738327e97e03.tar.gz |
mac80211: support VHT association
Determine the VHT channel from the AP's VHT operation IE
(if present) and configure the hardware to that channel
if it is supported. If channel contexts cause a channel
to not be usable, try a smaller bandwidth.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r-- | net/mac80211/ieee80211_i.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 0a8f83d..8d8bf71 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h @@ -371,6 +371,8 @@ enum ieee80211_sta_flags { IEEE80211_STA_RESET_SIGNAL_AVE = BIT(9), IEEE80211_STA_DISABLE_40MHZ = BIT(10), IEEE80211_STA_DISABLE_VHT = BIT(11), + IEEE80211_STA_DISABLE_80P80MHZ = BIT(12), + IEEE80211_STA_DISABLE_160MHZ = BIT(13), }; struct ieee80211_mgd_auth_data { |