浏览代码

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
Nidhi Jain 2 年之前
父节点
当前提交
be0e54e189
共有 1 个文件被更改,包括 8 次插入6 次删除
  1. 8 6
      umac/mlo_mgr/inc/wlan_mlo_mgr_public_structs.h

+ 8 - 6
umac/mlo_mgr/inc/wlan_mlo_mgr_public_structs.h

@@ -550,16 +550,18 @@ enum wlan_t2lm_resp_frm_type {
  * 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_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_MAP_ALL_TIDS_TO_SAME_LINK_SET: MLD only supports the mapping of all
- *             TIDs to the same link set.
+ * @WLAN_T2LM_MAP_ALL_TIDS_TO_SAME_LINK_SET: MLD only supports the mapping of
+ *    all TIDs to the same link set.
+ * @WLAN_T2LM_MAP_RESERVED: reserved value
+ * @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
  */
 enum wlan_t2lm_enable {
 	WLAN_T2LM_NOT_SUPPORTED = 0,
-	WLAN_MAP_EACH_TID_TO_SAME_OR_DIFFERENET_LINK_SET = 1,
-	WLAN_MAP_ALL_TIDS_TO_SAME_LINK_SET = 2,
+	WLAN_T2LM_MAP_ALL_TIDS_TO_SAME_LINK_SET = 1,
+	WLAN_T2LM_MAP_RESERVED = 2,
+	WLAN_T2LM_MAP_EACH_TID_TO_SAME_OR_DIFFERENET_LINK_SET = 3,
 	WLAN_T2LM_ENABLE_INVALID,
 };