From 5cb1929da6698d5972a357d98db31f7a25265c2a Mon Sep 17 00:00:00 2001 From: Vinay Gannevaram Date: Sun, 18 Aug 2024 16:00:26 +0530 Subject: [PATCH] Add QCA vendor feature flags to indicate NAN USD offload support Add a separate feature flag to indicate support for NAN USD offload feature. Signed-off-by: Vinay Gannevaram --- src/common/qca-vendor.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index 6148eac53..5545879ac 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -2259,6 +2259,9 @@ enum qca_wlan_vendor_acs_hw_mode { * elements or add that element if none was provided based on the BSS * selected by the driver. * + * @QCA_WLAN_VENDOR_FEATURE_NAN_USD_OFFLOAD: Flag indicates that the driver + * supports Unsynchronized Service Discovery to be offloaded to it. + * * @NUM_QCA_WLAN_VENDOR_FEATURES: Number of assigned feature bits */ enum qca_wlan_vendor_features { @@ -2288,6 +2291,7 @@ enum qca_wlan_vendor_features { QCA_WLAN_VENDOR_FEATURE_ENHANCED_AUDIO_EXPERIENCE_OVER_WLAN = 23, QCA_WLAN_VENDOR_FEATURE_HT_VHT_TWT_RESPONDER = 24, QCA_WLAN_VENDOR_FEATURE_RSN_OVERRIDE_STA = 25, + QCA_WLAN_VENDOR_FEATURE_NAN_USD_OFFLOAD = 26, NUM_QCA_WLAN_VENDOR_FEATURES /* keep last */ };