Sfoglia il codice sorgente

qcacld-3.0: Add assoc link bit in mlo_support_link_band

Add assoc link bit in mlo_support_link_band to indicate supported band of
assoc link.
bit4: 2 GHz
bit5: 5 GHz
bit6: 6 GHz

Change-Id: I8fa156f43656ba91b8622ce12034ddad0bcf28a2
CRs-Fixed: 3250252
Jianmin Zhu 2 anni fa
parent
commit
897377cab3
1 ha cambiato i file con 11 aggiunte e 5 eliminazioni
  1. 11 5
      components/mlme/dispatcher/inc/cfg_mlme_sta.h

+ 11 - 5
components/mlme/dispatcher/inc/cfg_mlme_sta.h

@@ -568,8 +568,8 @@
  * <cfg>
  * mlo_support_link_band - Set band bitmap of mlo connection supports for sta
  * @Min: 1
- * @Max: 7
- * @Default: 7
+ * @Max: 0x77
+ * @Default: 0x77
  *
  * This cfg is used to configure the band bitmap of mlo connection supports
  *
@@ -579,17 +579,23 @@
  *
  * Usage: Internal
  *
+ * Supported band of all mlo links
  * bits 0: REG_BAND_2G
  * bits 1: REG_BAND_5G
  * bits 2: REG_BAND_6G
  *
+ * Supported band of assoc link
+ * bits 4: REG_BAND_2G
+ * bits 5: REG_BAND_5G
+ * bits 6: REG_BAND_6G
+ *
  * </cfg>
  */
 #define CFG_MLO_SUPPORT_LINK_BAND CFG_UINT( \
 			"mlo_support_link_band", \
-			1, \
-			7, \
-			7, \
+			0x1, \
+			0x77, \
+			0x77, \
 			CFG_VALUE_OR_DEFAULT, \
 			"supported mlo link band")