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
This commit is contained in:
Vivek
2020-03-03 15:09:07 +05:30
committed by nshrivas
parent 9b01e38405
commit d1bd5ce929

View File

@@ -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