From 49c358953f0d1462456a666cdf141346884d655d Mon Sep 17 00:00:00 2001 From: patacongo Date: Fri, 20 Jan 2012 17:27:06 +0000 Subject: Fix some warnings git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4318 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/configs/stm3210e-eval/src/up_adc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nuttx/configs/stm3210e-eval/src/up_adc.c b/nuttx/configs/stm3210e-eval/src/up_adc.c index f2a6cec84..6b1a8cb50 100644 --- a/nuttx/configs/stm3210e-eval/src/up_adc.c +++ b/nuttx/configs/stm3210e-eval/src/up_adc.c @@ -40,6 +40,7 @@ #include +#include #include #include @@ -137,7 +138,7 @@ int adc_devinit(void) if (adc == NULL) { adbg("ERROR: Failed to get ADC interface\n"); - return; + return -ENODEV; } /* Register the ADC driver at "/dev/adc0" */ @@ -161,4 +162,4 @@ int adc_devinit(void) } #endif /* CONFIG_STM32_ADC1 || CONFIG_STM32_ADC2 || CONFIG_STM32_ADC3 */ -#endif /* CONFIG_ADC */ \ No newline at end of file +#endif /* CONFIG_ADC */ -- cgit v1.2.3