drivers: adc: Correct an error in Kconfig

Correct an error in ADC Kconfig. The # in the beginning of
the code lines unintentionally commented out the "if" condition.

Jira: ZEP-645

Change-Id: Ieee1bdbf4865fc39aef9a0986036fd81a75e5b58
Signed-off-by: Baohong Liu <baohong.liu@intel.com>
Signed-off-by: Qiu Peiyang <peiyangx.qiu@intel.com>
This commit is contained in:
Baohong Liu 2016-08-09 15:51:14 -07:00 committed by Andrew Boie
commit 0ec26e9587

View file

@ -268,7 +268,7 @@ config ADC_QMSI_SERIAL_DELAY
the serial output is delayed after the conversion
has started.
#if ADC_QMSI
if ADC_QMSI
config ADC_QMSI_SAMPLE_WIDTH
int "Sample Width"
default 3
@ -282,9 +282,9 @@ config ADC_QMSI_SAMPLE_WIDTH
- 2 = 10 bits resolution
- 3 = 12 bits resolution
#endif
endif
#if ADC_QMSI_SS
if ADC_QMSI_SS
config ADC_QMSI_SAMPLE_WIDTH
int "Sample Width"
default 11
@ -298,6 +298,6 @@ config ADC_QMSI_SAMPLE_WIDTH
- 9 = 10 bits resolution
- 11 = 12 bits resolution
#endif
endif
endif # ADC_QMSI || ADC_QMSI_SS