瀏覽代碼

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
Vivek 5 年之前
父節點
當前提交
d1bd5ce929
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      wlan_cfg/cfg_dp.h

+ 1 - 1
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