From 7391ec61e2ae42133c076d10899af324776e8255 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Mon, 12 Aug 2013 16:42:38 +0000 Subject: Fixed obsolete check. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6144 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/include/mmc_spi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/os/hal/include/mmc_spi.h b/os/hal/include/mmc_spi.h index 5732570b6..2610d0024 100644 --- a/os/hal/include/mmc_spi.h +++ b/os/hal/include/mmc_spi.h @@ -65,8 +65,8 @@ /* Derived constants and error checks. */ /*===========================================================================*/ -#if !HAL_USE_SPI || !SPI_USE_WAIT || !CH_USE_EVENTS -#error "MMC_SPI driver requires HAL_USE_SPI, SPI_USE_WAIT and CH_USE_EVENTS" +#if !HAL_USE_SPI || !SPI_USE_WAIT +#error "MMC_SPI driver requires HAL_USE_SPI and SPI_USE_WAIT" #endif /*===========================================================================*/ -- cgit v1.2.3