qcacmn: Update T2LM negotiation values for wlan_t2lm_enable

This change updates the T2LM negotiation values for wlan_t2lm_enable.

Change-Id: I17e2d0e99eb383f072f5595c524156265274a194
CRs-Fixed: 3306992
This commit is contained in:
Nidhi Jain
2022-10-06 20:43:18 +05:30
committed by Madan Koyyalamudi
parent af0472aa08
commit be0e54e189

View File

@@ -550,16 +550,18 @@ enum wlan_t2lm_resp_frm_type {
* enum wlan_t2lm_enable - TID-to-link negotiation supported by the mlo peer * enum wlan_t2lm_enable - TID-to-link negotiation supported by the mlo peer
* *
* @WLAN_T2LM_NOT_SUPPORTED: T2LM is not supported by the MLD * @WLAN_T2LM_NOT_SUPPORTED: T2LM is not supported by the MLD
* @WLAN_MAP_EACH_TID_TO_SAME_OR_DIFFERENET_LINK_SET: MLD supports the mapping * @WLAN_T2LM_MAP_ALL_TIDS_TO_SAME_LINK_SET: MLD only supports the mapping of
* of each TID to the same or different link set (Disjoint mapping). * all TIDs to the same link set.
* @WLAN_MAP_ALL_TIDS_TO_SAME_LINK_SET: MLD only supports the mapping of all * @WLAN_T2LM_MAP_RESERVED: reserved value
* TIDs to the same link set. * @WLAN_T2LM_MAP_EACH_TID_TO_SAME_OR_DIFFERENET_LINK_SET: MLD supports the
* mapping of each TID to the same or different link set (Disjoint mapping).
* @WLAN_T2LM_ENABLE_INVALID: invalid * @WLAN_T2LM_ENABLE_INVALID: invalid
*/ */
enum wlan_t2lm_enable { enum wlan_t2lm_enable {
WLAN_T2LM_NOT_SUPPORTED = 0, WLAN_T2LM_NOT_SUPPORTED = 0,
WLAN_MAP_EACH_TID_TO_SAME_OR_DIFFERENET_LINK_SET = 1, WLAN_T2LM_MAP_ALL_TIDS_TO_SAME_LINK_SET = 1,
WLAN_MAP_ALL_TIDS_TO_SAME_LINK_SET = 2, WLAN_T2LM_MAP_RESERVED = 2,
WLAN_T2LM_MAP_EACH_TID_TO_SAME_OR_DIFFERENET_LINK_SET = 3,
WLAN_T2LM_ENABLE_INVALID, WLAN_T2LM_ENABLE_INVALID,
}; };