From 13feeaa10432bd548c544477ab59f31ff96ebf82 Mon Sep 17 00:00:00 2001 From: Rajasekaran Kalidoss Date: Tue, 22 Sep 2020 10:52:42 +0530 Subject: [PATCH] Add a new status code to represent an already suspended TWT session The firmware sends a new status code to indicate an already suspended TWT session. Update the status code enum to represent this state. Signed-off-by: Jouni Malinen --- src/common/qca-vendor.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index af6822020..d42d31fa4 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -8048,6 +8048,8 @@ enum qca_wlan_vendor_attr_twt_setup { * @QCA_WLAN_VENDOR_TWT_STATUS_DENIED: AP did not accept the request * @QCA_WLAN_VENDOR_TWT_STATUS_UNKNOWN_ERROR: Adding TWT dialog failed due to an * unknown reason + * @QCA_WLAN_VENDOR_TWT_STATUS_ALREADY_SUSPENDED: TWT session already in + * suspend state */ enum qca_wlan_vendor_twt_status { QCA_WLAN_VENDOR_TWT_STATUS_OK = 0, @@ -8063,6 +8065,7 @@ enum qca_wlan_vendor_twt_status { QCA_WLAN_VENDOR_TWT_STATUS_NO_RESPONSE = 10, QCA_WLAN_VENDOR_TWT_STATUS_DENIED = 11, QCA_WLAN_VENDOR_TWT_STATUS_UNKNOWN_ERROR = 12, + QCA_WLAN_VENDOR_TWT_STATUS_ALREADY_SUSPENDED = 13, }; /**