diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2008-06-18 10:53:44 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-06-30 17:37:34 -0400 |
commit | 06ff47bc9595848b818ac79e7d8069337c6e58b1 (patch) | |
tree | a0a2d00f25f5c97f04dffd4c27059e1d217ea5a0 /include/net/mac80211.h | |
parent | 7b1e78d5052a92e95d851fbb0236a712264fe7e8 (diff) |
mac80211: add spectrum capabilities
This patch add spectrum capability and required information
elements to association request providing AP has requested it and
it is supported by the driver
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Assaf Krauss <assaf.krauss@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r-- | include/net/mac80211.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 02c79e6b309e..a7044958c75f 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -710,6 +710,10 @@ enum ieee80211_tkip_key_type { | |||
710 | * @IEEE80211_HW_NOISE_DBM: | 710 | * @IEEE80211_HW_NOISE_DBM: |
711 | * Hardware can provide noise (radio interference) values in units dBm, | 711 | * Hardware can provide noise (radio interference) values in units dBm, |
712 | * decibel difference from one milliwatt. | 712 | * decibel difference from one milliwatt. |
713 | * | ||
714 | * @IEEE80211_HW_SPECTRUM_MGMT: | ||
715 | * Hardware supports spectrum management defined in 802.11h | ||
716 | * Measurement, Channel Switch, Quieting, TPC | ||
713 | */ | 717 | */ |
714 | enum ieee80211_hw_flags { | 718 | enum ieee80211_hw_flags { |
715 | IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE = 1<<0, | 719 | IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE = 1<<0, |
@@ -721,6 +725,7 @@ enum ieee80211_hw_flags { | |||
721 | IEEE80211_HW_SIGNAL_DB = 1<<6, | 725 | IEEE80211_HW_SIGNAL_DB = 1<<6, |
722 | IEEE80211_HW_SIGNAL_DBM = 1<<7, | 726 | IEEE80211_HW_SIGNAL_DBM = 1<<7, |
723 | IEEE80211_HW_NOISE_DBM = 1<<8, | 727 | IEEE80211_HW_NOISE_DBM = 1<<8, |
728 | IEEE80211_HW_SPECTRUM_MGMT = 1<<9, | ||
724 | }; | 729 | }; |
725 | 730 | ||
726 | /** | 731 | /** |