From ef9d68fea09167df3c36fc340d48f0c217303375 Mon Sep 17 00:00:00 2001 From: Fabio Utzig Date: Sat, 9 Apr 2016 23:14:42 +0000 Subject: [AVR] Fix mutex/semaphore macro usage git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9268 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/ports/AVR/hal_adc_lld.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'os/hal') diff --git a/os/hal/ports/AVR/hal_adc_lld.h b/os/hal/ports/AVR/hal_adc_lld.h index 9e9ac6b8a..018b4a911 100644 --- a/os/hal/ports/AVR/hal_adc_lld.h +++ b/os/hal/ports/AVR/hal_adc_lld.h @@ -44,8 +44,8 @@ /* Derived constants and error checks. */ /*===========================================================================*/ -#if !CH_USE_SEMAPHORES -#error "the ADC driver requires CH_USE_SEMAPHORES" +#if !CH_CFG_USE_SEMAPHORES +#error "the ADC driver requires CH_CFG_USE_SEMAPHORES" #endif /*===========================================================================*/ @@ -148,12 +148,12 @@ struct ADCDriver { Thread *thread; #endif /* ADC_USE_WAIT */ #if ADC_USE_MUTUAL_EXCLUSION || defined(__DOXYGEN__) -#if CH_USE_MUTEXES || defined(__DOXYGEN__) +#if CH_CFG_USE_MUTEXES || defined(__DOXYGEN__) /** * @brief Mutex protecting the peripheral. */ Mutex mutex; -#elif CH_USE_SEMAPHORES +#elif CH_CFG_USE_SEMAPHORES Semaphore semaphore; #endif #endif /* ADC_USE_MUTUAL_EXCLUSION */ -- cgit v1.2.3