diff options
author | Johannes Berg <johannes.berg@intel.com> | 2012-11-22 17:00:18 -0500 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2012-11-27 05:56:18 -0500 |
commit | 5164892184d1b9ce19e45e97e9ca405ea8b9ceb2 (patch) | |
tree | 011ba3d92ccf3b10f34ffff9c0ea09d339521a49 /net/mac80211/main.c | |
parent | f2d9d270c15ae0139b54a7e7466d738327e97e03 (diff) |
mac80211: support (partial) VHT radiotap information
Add some information that we have about VHT to radiotap.
This at least lets one see the MCS and NSS information.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/main.c')
-rw-r--r-- | net/mac80211/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/main.c b/net/mac80211/main.c index 6e933409979a..c4ed83b74e52 100644 --- a/net/mac80211/main.c +++ b/net/mac80211/main.c | |||
@@ -638,6 +638,8 @@ struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len, | |||
638 | local->hw.radiotap_mcs_details = IEEE80211_RADIOTAP_MCS_HAVE_MCS | | 638 | local->hw.radiotap_mcs_details = IEEE80211_RADIOTAP_MCS_HAVE_MCS | |
639 | IEEE80211_RADIOTAP_MCS_HAVE_GI | | 639 | IEEE80211_RADIOTAP_MCS_HAVE_GI | |
640 | IEEE80211_RADIOTAP_MCS_HAVE_BW; | 640 | IEEE80211_RADIOTAP_MCS_HAVE_BW; |
641 | local->hw.radiotap_vht_details = IEEE80211_RADIOTAP_VHT_KNOWN_GI | | ||
642 | IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH; | ||
641 | local->user_power_level = IEEE80211_UNSET_POWER_LEVEL; | 643 | local->user_power_level = IEEE80211_UNSET_POWER_LEVEL; |
642 | wiphy->ht_capa_mod_mask = &mac80211_ht_capa_mod_mask; | 644 | wiphy->ht_capa_mod_mask = &mac80211_ht_capa_mod_mask; |
643 | 645 | ||