浏览代码

qcacld-3.0: Give valid range of value for aliasing INI

There are two different name with different range of value for
aliasing INI's. So, it should pick the valid range of value wrt INI
name.

Change-Id: Ia0ea4ebc6b1f96b38243c4e0693e47be99868953
CRs-Fixed: 3258760
Jyoti Kumari 2 年之前
父节点
当前提交
d0c89ad942
共有 1 个文件被更改,包括 13 次插入3 次删除
  1. 13 3
      components/mlme/dispatcher/inc/cfg_mlme_lfr.h

+ 13 - 3
components/mlme/dispatcher/inc/cfg_mlme_lfr.h

@@ -24,6 +24,16 @@
 #ifndef CFG_MLME_LFR_H__
 #define CFG_MLME_LFR_H__
 
+#ifdef CONNECTION_ROAMING_CFG
+# define RoamScan_ActiveCH_DwellTime_min 0
+# define RoamScan_ActiveCH_DwellTime_max 200
+# define RoamScan_ActiveCH_DwellTime_default 40
+#else
+# define RoamScan_ActiveCH_DwellTime_min 3
+# define RoamScan_ActiveCH_DwellTime_max 300
+# define RoamScan_ActiveCH_DwellTime_default 40
+#endif
+
 /*
  * <ini>
  * mawc_roam_enabled - Enable/Disable MAWC during roaming
@@ -1534,9 +1544,9 @@
  */
 #define CFG_LFR_NEIGHBOR_SCAN_MAX_CHAN_TIME CFG_INI_UINT( \
 	"gNeighborScanChannelMaxTime RoamScan_ActiveCH_DwellTime", \
-	3, \
-	300, \
-	40, \
+	RoamScan_ActiveCH_DwellTime_min, \
+	RoamScan_ActiveCH_DwellTime_max, \
+	RoamScan_ActiveCH_DwellTime_default, \
 	CFG_VALUE_OR_DEFAULT, \
 	"Neighbor scan channel max time")