Introduce reason code for TWT teardown due to concurrency
The firmware sends new reason codes to indicate TWT teardown due to single channel and multi channel concurrency. Update the enum qca_wlan_vendor_twt_status to represent new reason code. Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
6219d5a5c2
commit
7831b10a89
1 changed files with 4 additions and 0 deletions
|
@ -8512,6 +8512,9 @@ enum qca_wlan_vendor_attr_twt_setup {
|
|||
* @QCA_WLAN_VENDOR_TWT_STATUS_ROAM_INITIATED_TERMINATE: FW terminated the TWT
|
||||
* session due to roaming. Used on the TWT_TERMINATE notification from the
|
||||
* firmware.
|
||||
* @QCA_WLAN_VENDOR_TWT_STATUS_SCC_MCC_CONCURRENCY_TERMINATE: FW terminated the
|
||||
* TWT session due to SCC (Single Channel Concurrency) and MCC (Multi Channel
|
||||
* Concurrency). Used on the TWT_TERMINATE notification from the firmware.
|
||||
*/
|
||||
enum qca_wlan_vendor_twt_status {
|
||||
QCA_WLAN_VENDOR_TWT_STATUS_OK = 0,
|
||||
|
@ -8532,6 +8535,7 @@ enum qca_wlan_vendor_twt_status {
|
|||
QCA_WLAN_VENDOR_TWT_STATUS_PARAMS_NOT_IN_RANGE = 15,
|
||||
QCA_WLAN_VENDOR_TWT_STATUS_PEER_INITIATED_TERMINATE = 16,
|
||||
QCA_WLAN_VENDOR_TWT_STATUS_ROAM_INITIATED_TERMINATE = 17,
|
||||
QCA_WLAN_VENDOR_TWT_STATUS_SCC_MCC_CONCURRENCY_TERMINATE = 18,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue