From: Kiran Kumar Lokere Date: Thu, 10 May 2018 21:30:27 +0000 (-0700) Subject: Define new QCA feature flag for self managed regulatory support X-Git-Tag: hostap_2_7~341 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d66e7c408d1eba8f947aa58d42b949b80926e7b;p=thirdparty%2Fhostap.git Define new QCA feature flag for self managed regulatory support This can be used to determine which mechanism to use for configuring country code from trusted sources. Signed-off-by: Jouni Malinen --- diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index f6d1bc6ec..3b49f55cd 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -936,6 +936,8 @@ enum qca_wlan_vendor_acs_hw_mode { * %QCA_WLAN_VENDOR_FEATURE_OCE_AP, the userspace shall assume that * this Device may not support all OCE AP functionalities but can support * only OCE STA-CFON functionalities. + * @QCA_WLAN_VENDOR_FEATURE_SELF_MANAGED_REGULATORY: Device supports self + * managed regulatory. * @NUM_QCA_WLAN_VENDOR_FEATURES: Number of assigned feature bits */ enum qca_wlan_vendor_features { @@ -946,6 +948,7 @@ enum qca_wlan_vendor_features { QCA_WLAN_VENDOR_FEATURE_OCE_STA = 4, QCA_WLAN_VENDOR_FEATURE_OCE_AP = 5, QCA_WLAN_VENDOR_FEATURE_OCE_STA_CFON = 6, + QCA_WLAN_VENDOR_FEATURE_SELF_MANAGED_REGULATORY = 7, NUM_QCA_WLAN_VENDOR_FEATURES /* keep last */ };