qcacld-3.0: Update max value of gEnableModulatedDTIM ini

Currently max value of gEnableModulatedDTIM is 5 which is
incorrect as FW supports maximum no. of modulated DTIM as 10.

To address above issue update max value of gEnableModulatedDTIM
ini.

CRs-Fixed: 2830240
Change-Id: I7f1cab6f0cb2b2a60e7cc1bb37a9971c1752a1bb
This commit is contained in:
Ashish Kumar Dhanotiya
2020-11-27 18:14:05 +05:30
committed by snandini
parent baa6fe85da
commit eb23480b4e
2 changed files with 9 additions and 4 deletions

View File

@@ -141,13 +141,13 @@
* <ini>
* gEnableModulatedDTIM - Enable/Disable modulated DTIM feature
* @Min: 0
* @Max: 5
* @Max: 10
* @Default: 0
*
* This ini is used to enable/disable modulated DTIM feature.
*
* 0 - Disable modulated DTIM.
* 1 to 5 - The maximum No. of modulated DTIM period used for calculating the
* 1 to 10 - The maximum No. of modulated DTIM period used for calculating the
* target listen interval.
*
* The target listen interval will be updated to firmware when host driver is
@@ -163,7 +163,7 @@
#define CFG_PMO_ENABLE_MODULATED_DTIM CFG_INI_UINT( \
"gEnableModulatedDTIM", \
0, \
5, \
10, \
0, \
CFG_VALUE_OR_DEFAULT, \
"Enable/disable modulated DTIM feature")