]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Add QCA vendor feature flag for allowed frequency list
authorVeerendranath Jakkam <quic_vjakkam@quicinc.com>
Fri, 24 Feb 2023 10:17:59 +0000 (15:47 +0530)
committerJouni Malinen <j@w1.fi>
Mon, 3 Apr 2023 20:09:07 +0000 (23:09 +0300)
Add a vendor feature flag for the driver to indicate support for allowed
frequency configuration in AP mode.

Signed-off-by: Veerendranath Jakkam <quic_vjakkam@quicinc.com>
src/common/qca-vendor.h

index 3b1abccbdd136fd2a17086dc9d0a5dcb54db25f5..551fcf532b76fa9604e5b02de9a0fff6ffa7e374 100644 (file)
@@ -1804,6 +1804,9 @@ enum qca_wlan_vendor_acs_hw_mode {
  *     measurement management frames. If
  *     NL80211_EXT_FEATURE_PROT_RANGE_NEGO_AND_MEASURE is set, then
  *     QCA_WLAN_VENDOR_FEATURE_PROT_RANGE_NEGO_AND_MEASURE_AP will be ignored.
+ * @QCA_WLAN_VENDOR_FEATURE_AP_ALLOWED_FREQ_LIST: Flag indicates that the device
+ *     in AP mode supports configuring allowed frequency list for AP operation
+ *     with %QCA_WLAN_VENDOR_ATTR_CONFIG_AP_ALLOWED_FREQ_LIST.
  * @NUM_QCA_WLAN_VENDOR_FEATURES: Number of assigned feature bits
  */
 enum qca_wlan_vendor_features {
@@ -1829,6 +1832,7 @@ enum qca_wlan_vendor_features {
        QCA_WLAN_VENDOR_FEATURE_SECURE_RTT_AP           = 19,
        QCA_WLAN_VENDOR_FEATURE_PROT_RANGE_NEGO_AND_MEASURE_STA = 20,
        QCA_WLAN_VENDOR_FEATURE_PROT_RANGE_NEGO_AND_MEASURE_AP = 21,
+       QCA_WLAN_VENDOR_FEATURE_AP_ALLOWED_FREQ_LIST = 22,
        NUM_QCA_WLAN_VENDOR_FEATURES /* keep last */
 };