From 3911a83e6e485dd33509ace85dab37922cdc5da9 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 23 Apr 2013 10:31:58 +0000 Subject: Fixed wrong preprocessor check. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5607 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/SPC563Mxx/hal_lld.h | 2 +- os/hal/platforms/SPC564Axx/hal_lld.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/os/hal/platforms/SPC563Mxx/hal_lld.h b/os/hal/platforms/SPC563Mxx/hal_lld.h index 15ae669f3..eec53fd5a 100644 --- a/os/hal/platforms/SPC563Mxx/hal_lld.h +++ b/os/hal/platforms/SPC563Mxx/hal_lld.h @@ -132,7 +132,7 @@ * @brief External clock pre-divider. * @note Must be in range 1...15. */ -#if !defined(SPC5_CLK_PREDIV) || defined(__DOXYGEN__) +#if !defined(SPC5_CLK_PREDIV_VALUE) || defined(__DOXYGEN__) #define SPC5_CLK_PREDIV_VALUE 2 #endif diff --git a/os/hal/platforms/SPC564Axx/hal_lld.h b/os/hal/platforms/SPC564Axx/hal_lld.h index da8bcf26a..196646a04 100644 --- a/os/hal/platforms/SPC564Axx/hal_lld.h +++ b/os/hal/platforms/SPC564Axx/hal_lld.h @@ -132,7 +132,7 @@ * @brief External clock pre-divider. * @note Must be in range 1...15. */ -#if !defined(SPC5_CLK_PREDIV) || defined(__DOXYGEN__) +#if !defined(SPC5_CLK_PREDIV_VALUE) || defined(__DOXYGEN__) #define SPC5_CLK_PREDIV_VALUE 8 #endif -- cgit v1.2.3