From: Aleti Nageshwar Reddy Date: Wed, 21 Jun 2023 09:04:53 +0000 (+0530) Subject: Add support to get the TDLS wider bandwidth capability X-Git-Tag: hostap_2_11~1099 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19e880d1f8deeb1556cdb8d4b6403e3a44f55253;p=thirdparty%2Fhostap.git Add support to get the TDLS wider bandwidth capability Extend bitwise mask in enum qca_wlan_tdls_caps_features_supported to get the TDLS wider bandwidth capability from the driver. Signed-off-by: Aleti Nageshwar Reddy --- diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index 1f1878473..cb10d6c55 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -8079,7 +8079,12 @@ enum wifi_logger_supported_features { enum qca_wlan_tdls_caps_features_supported { WIFI_TDLS_SUPPORT = (1 << (0)), WIFI_TDLS_EXTERNAL_CONTROL_SUPPORT = (1 << (1)), - WIFI_TDLS_OFFCHANNEL_SUPPORT = (1 << (2)) + WIFI_TDLS_OFFCHANNEL_SUPPORT = (1 << (2)), + + /* Indicates if the TDLS session can be formed with the peer using + * higher bandwidth than the bandwidth of the AP path. + */ + WIFI_TDLS_WIDER_BW_SUPPORT = (1 << (3)), }; /**