Browse Source

qcacld-3.0: Set the default value 0 for early scan stop feature

gEnableEarlyStopScan is for early stop feature. Since it’s based
on rssi only, make the default value 0 on score enabled code
base.

Change-Id: Ie0e0483359d5a7e2cc969001af03500c9e8209c6
CRs-Fixed: 2311372
Tushnim Bhattacharyya 6 years ago
parent
commit
1fdefe5a8b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      components/mlme/dispatcher/inc/cfg_mlme_lfr.h

+ 2 - 2
components/mlme/dispatcher/inc/cfg_mlme_lfr.h

@@ -260,7 +260,7 @@
  * gEnableEarlyStopScan - Set early stop scan
  * @Min: 0
  * @Max: 1
- * @Default: 1
+ * @Default: 0
  *
  * This ini is used to set early stop scan. Early stop
  * scan is a feature for roaming to stop the scans at
@@ -277,7 +277,7 @@
  */
 #define CFG_LFR_EARLY_STOP_SCAN_ENABLE CFG_INI_BOOL( \
 	"gEnableEarlyStopScan", \
-	1, \
+	0, \
 	"Set early stop scan")
 
 /*