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 <quic_anageshw@quicinc.com>
This commit is contained in:
parent
a8a112d4d1
commit
19e880d1f8
1 changed files with 6 additions and 1 deletions
|
@ -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)),
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue