Browse Source

qcacld-3.0: Fix minimum candidate roam score delta value

Change candidate minimum roam score delta value "min_roam_score_delta"
to zero.

Change-Id: Icfb98db30c2333ade40127a7df94e9a0973e4f67
CRs-Fixed: 2655873
Vulupala Shashank Reddy 5 years ago
parent
commit
d6e11c6f0f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      components/mlme/dispatcher/inc/cfg_mlme_scoring.h

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

@@ -1041,7 +1041,7 @@
  * AP and roam candidate AP.
  * @Min: 0
  * @Max: 10000
- * @Default: 1850
+ * @Default: 0
  *
  * This ini is used during CU and low rssi based roam triggers, consider
  * AP as roam candidate only if its roam score is better than connected
@@ -1065,7 +1065,7 @@
 			"min_roam_score_delta", \
 			0, \
 			10000, \
-			1850, \
+			0, \
 			CFG_VALUE_OR_DEFAULT, \
 			"Diff between connected AP's and candidate AP's roam score")