diff options
author | Johannes Berg <johannes.berg@intel.com> | 2015-01-15 16:02:46 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-01-15 16:02:46 +0100 |
commit | f89903d53f4d39577be98940f7cfa49d66f86db5 (patch) | |
tree | c986d12d7d500ad859280c133607f063a1323c48 /include/net/mac80211.h | |
parent | baf1b99ba169bdd3324ac9d99bc2a00c25534429 (diff) | |
download | linux-f89903d53f4d39577be98940f7cfa49d66f86db5.tar.bz2 |
mac80211: remove 80+80 MHz rate reporting
These rates are treated the same as 160 MHz in the spec,
so it makes no sense to distinguish them. As no driver
uses them yet, this is also not a problem, just remove
them.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r-- | include/net/mac80211.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 123f2308958a..275ee56152ad 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h @@ -931,15 +931,13 @@ enum mac80211_rx_flags { * These flags are used with the @vht_flag member of * &struct ieee80211_rx_status. * @RX_VHT_FLAG_80MHZ: 80 MHz was used - * @RX_VHT_FLAG_80P80MHZ: 80+80 MHz was used * @RX_VHT_FLAG_160MHZ: 160 MHz was used * @RX_VHT_FLAG_BF: packet was beamformed */ enum mac80211_rx_vht_flags { RX_VHT_FLAG_80MHZ = BIT(0), - RX_VHT_FLAG_80P80MHZ = BIT(1), - RX_VHT_FLAG_160MHZ = BIT(2), - RX_VHT_FLAG_BF = BIT(3), + RX_VHT_FLAG_160MHZ = BIT(1), + RX_VHT_FLAG_BF = BIT(2), }; /** |