diff options
author | Johannes Berg <johannes.berg@intel.com> | 2014-11-17 08:08:11 -0500 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-01-08 09:28:10 -0500 |
commit | 319090bf6c75e3ad42a8c74973be5e78ae4f948f (patch) | |
tree | 499fe25951bd986948c2b0e0552dfeca0784ae3a /include/uapi/linux/nl80211.h | |
parent | 2b9a7e1bac24df8ddb0713ad1e5807a7243bcab0 (diff) |
cfg80211: remove enum station_info_flags
This is really just duplicating the list of information that's
already available in the nl80211 attribute, so remove the list.
Two small changes are needed:
* remove STATION_INFO_ASSOC_REQ_IES complete, but the length
(assoc_req_ies_len) can be used instead
* add NL80211_STA_INFO_RX_DROP_MISC which exists internally
but not in nl80211 yet
This gets rid of the duplicate maintenance of the two lists.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/uapi/linux/nl80211.h')
-rw-r--r-- | include/uapi/linux/nl80211.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/uapi/linux/nl80211.h b/include/uapi/linux/nl80211.h index 2f549a253138..e48ca0bbd07b 100644 --- a/include/uapi/linux/nl80211.h +++ b/include/uapi/linux/nl80211.h | |||
@@ -2373,6 +2373,8 @@ enum nl80211_sta_bss_param { | |||
2373 | * Same format as NL80211_STA_INFO_CHAIN_SIGNAL. | 2373 | * Same format as NL80211_STA_INFO_CHAIN_SIGNAL. |
2374 | * @NL80211_STA_EXPECTED_THROUGHPUT: expected throughput considering also the | 2374 | * @NL80211_STA_EXPECTED_THROUGHPUT: expected throughput considering also the |
2375 | * 802.11 header (u32, kbps) | 2375 | * 802.11 header (u32, kbps) |
2376 | * @NL80211_STA_INFO_RX_DROP_MISC: RX packets dropped for unspecified reasons | ||
2377 | * (u64) | ||
2376 | * @__NL80211_STA_INFO_AFTER_LAST: internal | 2378 | * @__NL80211_STA_INFO_AFTER_LAST: internal |
2377 | * @NL80211_STA_INFO_MAX: highest possible station info attribute | 2379 | * @NL80211_STA_INFO_MAX: highest possible station info attribute |
2378 | */ | 2380 | */ |
@@ -2405,6 +2407,7 @@ enum nl80211_sta_info { | |||
2405 | NL80211_STA_INFO_CHAIN_SIGNAL, | 2407 | NL80211_STA_INFO_CHAIN_SIGNAL, |
2406 | NL80211_STA_INFO_CHAIN_SIGNAL_AVG, | 2408 | NL80211_STA_INFO_CHAIN_SIGNAL_AVG, |
2407 | NL80211_STA_INFO_EXPECTED_THROUGHPUT, | 2409 | NL80211_STA_INFO_EXPECTED_THROUGHPUT, |
2410 | NL80211_STA_INFO_RX_DROP_MISC, | ||
2408 | 2411 | ||
2409 | /* keep last */ | 2412 | /* keep last */ |
2410 | __NL80211_STA_INFO_AFTER_LAST, | 2413 | __NL80211_STA_INFO_AFTER_LAST, |