diff options
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/platforms/LPC11xx/spi_lld.c | 2 | ||||
-rw-r--r-- | os/hal/platforms/LPC214x/spi_lld.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/platforms/LPC11xx/spi_lld.c b/os/hal/platforms/LPC11xx/spi_lld.c index b27d71ed0..50cd0c1ef 100644 --- a/os/hal/platforms/LPC11xx/spi_lld.c +++ b/os/hal/platforms/LPC11xx/spi_lld.c @@ -28,7 +28,7 @@ #include "ch.h"
#include "hal.h"
-#if LPC11xx_SPI_USE_SSP0 || defined(__DOXYGEN__)
+#if CH_HAL_USE_SPI || defined(__DOXYGEN__)
/*===========================================================================*/
/* Driver exported variables. */
diff --git a/os/hal/platforms/LPC214x/spi_lld.c b/os/hal/platforms/LPC214x/spi_lld.c index 3bb0b4522..69d0b6a44 100644 --- a/os/hal/platforms/LPC214x/spi_lld.c +++ b/os/hal/platforms/LPC214x/spi_lld.c @@ -28,7 +28,7 @@ #include "ch.h"
#include "hal.h"
-#if LPC214x_SPI_USE_SSP || defined(__DOXYGEN__)
+#if CH_HAL_USE_SPI || defined(__DOXYGEN__)
/*===========================================================================*/
/* Driver exported variables. */
|