From d1bd5ce929c3b10ce0732b1872d44bd36b299afa Mon Sep 17 00:00:00 2001 From: Vivek Date: Tue, 3 Mar 2020 15:09:07 +0530 Subject: [PATCH] qcacmn: Provide valid range for dp_int_timer_threshold_tx INI The default value provided for the INI item dp_int_timer_threshold_tx for WIN is 1000 which is beyond the specified INI range 8 and 100. Changing the max value to 1000 to accommodate the default value used by the INI and avoid warning while parsing INI values. CRs-Fixed: 2633718 Change-Id: I0aae0338798dab27d4ecb5d67e3b3fcfee983d92 --- wlan_cfg/cfg_dp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wlan_cfg/cfg_dp.h b/wlan_cfg/cfg_dp.h index bfbda42f1a..55ad4d6f27 100644 --- a/wlan_cfg/cfg_dp.h +++ b/wlan_cfg/cfg_dp.h @@ -123,7 +123,7 @@ #define WLAN_CFG_INT_BATCH_THRESHOLD_OTHER_MAX 1 #define WLAN_CFG_INT_TIMER_THRESHOLD_TX_MIN 8 -#define WLAN_CFG_INT_TIMER_THRESHOLD_TX_MAX 100 +#define WLAN_CFG_INT_TIMER_THRESHOLD_TX_MAX 1000 #define WLAN_CFG_INT_TIMER_THRESHOLD_RX_MIN 8 #define WLAN_CFG_INT_TIMER_THRESHOLD_RX_MAX 500