qcacld-3.0: Modify the max value of MWS coex ini params

The max ini params for mws_coex_pcc_channel_avoid_delay and
mws_coex_scc_channel_avoid_delay are set to be at 0xFF. This max value
doesnot correspond with the actual max value needed by the firmware.

Change the max value to include upto 0xFFFFFFFF

Change-Id: If88d7866c584abf43a41b0c6b9f63b21a0a4a2f2
CRs-Fixed: 2632517
This commit is contained in:
Sourav Mohapatra
2020-03-02 08:56:14 +05:30
committed by nshrivas
parent ae1b4d6765
commit e3dcef31ef

View File

@@ -95,8 +95,8 @@
*/ */
#define CFG_MWS_COEX_PCC_CHANNEL_AVOID_DELAY CFG_INI_UINT(\ #define CFG_MWS_COEX_PCC_CHANNEL_AVOID_DELAY CFG_INI_UINT(\
"mws_coex_pcc_channel_avoid_delay", \ "mws_coex_pcc_channel_avoid_delay", \
0x00, \ 0x00000000, \
0xFF, \ 0xFFFFFFFF, \
0x3C, \ 0x3C, \
CFG_VALUE_OR_DEFAULT, \ CFG_VALUE_OR_DEFAULT, \
"set mws-coex PCC channel avoidance delay") "set mws-coex PCC channel avoidance delay")
@@ -117,8 +117,8 @@
*/ */
#define CFG_MWS_COEX_SCC_CHANNEL_AVOID_DELAY CFG_INI_UINT(\ #define CFG_MWS_COEX_SCC_CHANNEL_AVOID_DELAY CFG_INI_UINT(\
"mws_coex_scc_channel_avoid_delay", \ "mws_coex_scc_channel_avoid_delay", \
0x00, \ 0x00000000, \
0xFF, \ 0xFFFFFFFF, \
0x78, \ 0x78, \
CFG_VALUE_OR_DEFAULT, \ CFG_VALUE_OR_DEFAULT, \
"set mws-coex SCC channel avoidance delay") "set mws-coex SCC channel avoidance delay")