diff options
author | Bernhard Schmidt <bschmidt@FreeBSD.org> | 2011-03-10 18:17:24 +0000 |
---|---|---|
committer | Bernhard Schmidt <bschmidt@FreeBSD.org> | 2011-03-10 18:17:24 +0000 |
commit | f136f45f3948e32c0967f378eb21561947dc09cf (patch) | |
tree | 95e2c376df7f31f54613f9cafcd2831c48637b1d /sys/net80211/ieee80211_ht.h | |
parent | be2cad28b306fa3af2ea79a0d3f1a4aba187168e (diff) | |
download | src-f136f45f3948e32c0967f378eb21561947dc09cf.tar.gz src-f136f45f3948e32c0967f378eb21561947dc09cf.zip |
Complete the MCS rate table based on the final 802.11n std. While here
adjust the IEEE80211_HTRATE_MAXSIZE constant, only MCS0 - 76 are valid
the other bits in the mcsset IE (77 - 127) are either reserved or used
for TX parameters.
Notes
Notes:
svn path=/head/; revision=219456
Diffstat (limited to 'sys/net80211/ieee80211_ht.h')
-rw-r--r-- | sys/net80211/ieee80211_ht.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net80211/ieee80211_ht.h b/sys/net80211/ieee80211_ht.h index 9cdc1ea9a4d4..249ddd2cc2fa 100644 --- a/sys/net80211/ieee80211_ht.h +++ b/sys/net80211/ieee80211_ht.h @@ -159,7 +159,7 @@ struct ieee80211_mcs_rates { uint16_t ht40_rate_800ns; uint16_t ht40_rate_400ns; }; -extern const struct ieee80211_mcs_rates ieee80211_htrates[16]; +extern const struct ieee80211_mcs_rates ieee80211_htrates[]; const struct ieee80211_htrateset *ieee80211_get_suphtrates( struct ieee80211com *, const struct ieee80211_channel *); |