diff options
author | Simon Wunderlich <simon.wunderlich@s2003.tu-chemnitz.de> | 2012-01-28 11:25:32 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-01-30 15:48:25 -0500 |
commit | 24db78c05b1e3ccb5a78aedd17aa1008c91dab5a (patch) | |
tree | f41babc8ada871a26619be23f983121ad557da91 /include/net/cfg80211.h | |
parent | d273bb20c00340748e3ca9730f87524ec5abbd64 (diff) |
nl80211: add support for mcs masks
Allow to set mcs masks through nl80211. We also allow to set MCS
rates but no legacy rates (and vice versa).
Signed-off-by: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Signed-off-by: Mathias Kretschmer <mathias.kretschmer@fokus.fraunhofer.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r-- | include/net/cfg80211.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 5bb3ed4f99f5..2964205332f4 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h | |||
@@ -1232,8 +1232,7 @@ enum wiphy_params_flags { | |||
1232 | struct cfg80211_bitrate_mask { | 1232 | struct cfg80211_bitrate_mask { |
1233 | struct { | 1233 | struct { |
1234 | u32 legacy; | 1234 | u32 legacy; |
1235 | /* TODO: add support for masking MCS rates; e.g.: */ | 1235 | u8 mcs[IEEE80211_HT_MCS_MASK_LEN]; |
1236 | /* u8 mcs[IEEE80211_HT_MCS_MASK_LEN]; */ | ||
1237 | } control[IEEE80211_NUM_BANDS]; | 1236 | } control[IEEE80211_NUM_BANDS]; |
1238 | }; | 1237 | }; |
1239 | /** | 1238 | /** |