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:
parent
5a8add7821
commit
0ec26e9587
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue