aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/linux
diff options
context:
space:
mode:
authorIlan Peer <ilan.peer@intel.com>2014-02-25 09:26:00 -0500
committerJohannes Berg <johannes.berg@intel.com>2014-04-09 04:55:35 -0400
commit52616f2b446eaad8eb2cd78bbd052f0066069757 (patch)
treee410fdc5238dc4d1aec48035ecef7ff51f579730 /include/uapi/linux
parent174e0cd28af0fe3c6c634c3e4d9e042c683bd7f7 (diff)
cfg80211: Add an option to hint indoor operation
Add the option to hint the wireless core that it is operating in an indoor environment. Signed-off-by: Ilan Peer <ilan.peer@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/uapi/linux')
-rw-r--r--include/uapi/linux/nl80211.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/uapi/linux/nl80211.h b/include/uapi/linux/nl80211.h
index ac5b2d25f0fc..513bfd7b2e5f 100644
--- a/include/uapi/linux/nl80211.h
+++ b/include/uapi/linux/nl80211.h
@@ -2602,10 +2602,13 @@ enum nl80211_dfs_regions {
2602 * present has been registered with the wireless core that 2602 * present has been registered with the wireless core that
2603 * has listed NL80211_FEATURE_CELL_BASE_REG_HINTS as a 2603 * has listed NL80211_FEATURE_CELL_BASE_REG_HINTS as a
2604 * supported feature. 2604 * supported feature.
2605 * @NL80211_USER_REG_HINT_INDOOR: a user sent an hint indicating that the
2606 * platform is operating in an indoor environment.
2605 */ 2607 */
2606enum nl80211_user_reg_hint_type { 2608enum nl80211_user_reg_hint_type {
2607 NL80211_USER_REG_HINT_USER = 0, 2609 NL80211_USER_REG_HINT_USER = 0,
2608 NL80211_USER_REG_HINT_CELL_BASE = 1, 2610 NL80211_USER_REG_HINT_CELL_BASE = 1,
2611 NL80211_USER_REG_HINT_INDOOR = 2,
2609}; 2612};
2610 2613
2611/** 2614/**