Prechádzať zdrojové kódy

qcacld-3.0: Rectify max value of gEnableDynamicDTIM

As a part of the change I3cd617e52e86e2a890e35edb33b37ba3df8f4f6e
the max value of the ini gEnableDynamicDTIM was changed from 9 to 5.
This change causes regression where DUT is not entering in to DTIM9.

Restore back the max value of the ini to 9.

Change-Id: Ifea0c5199951a0dffc5cd116ec4c065f1563fe94
CRs-Fixed: 2489494
Sourav Mohapatra 5 rokov pred
rodič
commit
4caef356e5

+ 2 - 2
components/pmo/dispatcher/inc/wlan_pmo_common_cfg.h

@@ -116,7 +116,7 @@
  * <ini>
  * gEnableDynamicDTIM - Enable Dynamic DTIM
  * @Min: 0
- * @Max: 5
+ * @Max: 9
  * @Default: 0
  *
  * This ini is used to enable/disable dynamic DTIM.
@@ -132,7 +132,7 @@
 #define CFG_PMO_ENABLE_DYNAMIC_DTIM CFG_INI_UINT( \
 	"gEnableDynamicDTIM", \
 	0, \
-	5, \
+	9, \
 	0, \
 	CFG_VALUE_OR_DEFAULT, \
 	"Enable Dynamic DTIM")