aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/cfg80211.h
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2015-01-15 10:05:21 -0500
committerJohannes Berg <johannes.berg@intel.com>2015-01-15 10:05:21 -0500
commit97d910d0aaa619ca530d08e2b1125b8014ccb030 (patch)
tree625396ac9ea52d46b9153f334ed7dcec77db8ee3 /include/net/cfg80211.h
parentf89903d53f4d39577be98940f7cfa49d66f86db5 (diff)
cfg80211: 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. In the userspace API the field remains reserved to preserve API and ABI. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r--include/net/cfg80211.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 38abc07503fd..0322048fddab 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -875,7 +875,6 @@ int cfg80211_check_station_change(struct wiphy *wiphy,
875 * @RATE_INFO_FLAGS_VHT_MCS: mcs field filled with VHT MCS 875 * @RATE_INFO_FLAGS_VHT_MCS: mcs field filled with VHT MCS
876 * @RATE_INFO_FLAGS_40_MHZ_WIDTH: 40 MHz width transmission 876 * @RATE_INFO_FLAGS_40_MHZ_WIDTH: 40 MHz width transmission
877 * @RATE_INFO_FLAGS_80_MHZ_WIDTH: 80 MHz width transmission 877 * @RATE_INFO_FLAGS_80_MHZ_WIDTH: 80 MHz width transmission
878 * @RATE_INFO_FLAGS_80P80_MHZ_WIDTH: 80+80 MHz width transmission
879 * @RATE_INFO_FLAGS_160_MHZ_WIDTH: 160 MHz width transmission 878 * @RATE_INFO_FLAGS_160_MHZ_WIDTH: 160 MHz width transmission
880 * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval 879 * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval
881 * @RATE_INFO_FLAGS_60G: 60GHz MCS 880 * @RATE_INFO_FLAGS_60G: 60GHz MCS
@@ -885,10 +884,9 @@ enum rate_info_flags {
885 RATE_INFO_FLAGS_VHT_MCS = BIT(1), 884 RATE_INFO_FLAGS_VHT_MCS = BIT(1),
886 RATE_INFO_FLAGS_40_MHZ_WIDTH = BIT(2), 885 RATE_INFO_FLAGS_40_MHZ_WIDTH = BIT(2),
887 RATE_INFO_FLAGS_80_MHZ_WIDTH = BIT(3), 886 RATE_INFO_FLAGS_80_MHZ_WIDTH = BIT(3),
888 RATE_INFO_FLAGS_80P80_MHZ_WIDTH = BIT(4), 887 RATE_INFO_FLAGS_160_MHZ_WIDTH = BIT(4),
889 RATE_INFO_FLAGS_160_MHZ_WIDTH = BIT(5), 888 RATE_INFO_FLAGS_SHORT_GI = BIT(5),
890 RATE_INFO_FLAGS_SHORT_GI = BIT(6), 889 RATE_INFO_FLAGS_60G = BIT(6),
891 RATE_INFO_FLAGS_60G = BIT(7),
892}; 890};
893 891
894/** 892/**