Browse Source

qcacld-3.0: Update mlo_support_link_num from cfg to ini

Change made to mlo_support_link_num from cfg to ini parameter.

Change-Id: I02251725fca7d0d550e87d806dda82f542e18879
CRs-Fixed: 3588980
Amruta Kulkarni 1 year ago
parent
commit
8b495ff353

+ 1 - 1
components/mlme/core/src/wlan_mlme_main.c

@@ -2398,7 +2398,7 @@ static void mlme_init_sta_mlo_cfg(struct wlan_objmgr_psoc *psoc,
 				  struct wlan_mlme_sta_cfg *sta)
 {
 	sta->mlo_support_link_num =
-		cfg_default(CFG_MLO_SUPPORT_LINK_NUM);
+		cfg_get(psoc, CFG_MLO_SUPPORT_LINK_NUM);
 	sta->mlo_support_link_band =
 		cfg_default(CFG_MLO_SUPPORT_LINK_BAND);
 	sta->mlo_max_simultaneous_links =

+ 7 - 7
components/mlme/dispatcher/inc/cfg_mlme_sta.h

@@ -569,27 +569,27 @@
 
 #ifdef WLAN_FEATURE_11BE_MLO
 /*
- * <cfg>
+ * <ini>
  * mlo_support_link_num - Set number of link mlo connection supports for sta
  * @Min: 1
  * @Max: 3
- * @Default: 3
+ * @Default: 2
  *
- * This cfg is used to configure the number of link mlo connection supports
+ * This ini is used to configure the number of link mlo connection supports
  *
  * Related: None
  *
  * Supported Feature: STA
  *
- * Usage: Internal
+ * Usage: Internal/External
  *
- * </cfg>
+ * </ini>
  */
-#define CFG_MLO_SUPPORT_LINK_NUM CFG_UINT( \
+#define CFG_MLO_SUPPORT_LINK_NUM CFG_INI_UINT( \
 			"mlo_support_link_num", \
 			1, \
 			3, \
-			3, \
+			2, \
 			CFG_VALUE_OR_DEFAULT, \
 			"supported mlo link number")