Prechádzať zdrojové kódy

qcacld-3.0: Rectify max values for TSF pin inis

The max values of the ini's CFG_SET_TSF_GPIO_PIN and
CFG_SET_TSF_IRQ_HOST_GPIO_PIN are set wrong. The default value for those
is higher than the max value.

Increase the max value to accommodate the correct range.

Change-Id: I7d5528801c3b0fc2480e00b28ab4eb8f0385930a
CRs-Fixed: 2570044
Sourav Mohapatra 5 rokov pred
rodič
commit
2a03074fae

+ 2 - 2
components/fw_offload/dispatcher/inc/cfg_fwol_generic.h

@@ -432,7 +432,7 @@
 #define CFG_SET_TSF_GPIO_PIN CFG_INI_INT( \
 		"gtsf_gpio_pin", \
 		0, \
-		254, \
+		255, \
 		255, \
 		CFG_VALUE_OR_DEFAULT, \
 		"GPIO pin to toggle when capture tsf")
@@ -455,7 +455,7 @@
 #define CFG_SET_TSF_IRQ_HOST_GPIO_PIN CFG_INI_INT( \
 		"gtsf_irq_host_gpio_pin", \
 		0, \
-		254, \
+		255, \
 		255, \
 		CFG_VALUE_OR_DEFAULT, \
 		"TSF irq GPIO pin of host platform")