Browse Source

qcacld-3.0: Make default value of ndi_max_support as 2

Currently, the ini param "ndi_max_support" is set to 1 in the
ini definition though DUT can support maximum 2 NDIs.
Customers need to set the ini param to 2 in ini file
in order to support two NDIs. This ini param value needs
to be maintained across chipsets and android versions,
which is difficult.
Change the default value to 2 to avoid these. If any customer
needs the value to be 1, the same can be set in customer/target
specific ini files.

Change-Id: Id45147541dba057c2f3420adee43c7a56e3ee72b
CRs-Fixed: 3097045
Srinivas Dasari 3 years ago
parent
commit
69b074e9f9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      components/nan/dispatcher/inc/cfg_nan.h

+ 2 - 2
components/nan/dispatcher/inc/cfg_nan.h

@@ -225,7 +225,7 @@
  *
  * @Min: 1
  * @Max: 2
- * @Default: 1
+ * @Default: 2
  *
  * Related: None
  *
@@ -239,7 +239,7 @@
 			"ndi_max_support", \
 			1, \
 			2, \
-			1, \
+			2, \
 			CFG_VALUE_OR_DEFAULT, \
 			"Max number of NDI host supports")