diff options
-rw-r--r-- | src/cpu/samsung/exynos5250/cpu.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cpu/samsung/exynos5250/cpu.h b/src/cpu/samsung/exynos5250/cpu.h index f399a427ce..b8598239ca 100644 --- a/src/cpu/samsung/exynos5250/cpu.h +++ b/src/cpu/samsung/exynos5250/cpu.h @@ -81,11 +81,19 @@ #ifndef __ASSEMBLER__ +/* FIXME(dhendrix): cpu_is_exynos5() seems broken atm... */ +#if 0 #define SAMSUNG_BASE(device, base) \ static inline unsigned int samsung_get_base_##device(void) \ { \ return cpu_is_exynos5() ? EXYNOS5_##base : 0; \ } +#endif +#define SAMSUNG_BASE(device, base) \ +static inline unsigned int samsung_get_base_##device(void) \ +{ \ + return EXYNOS5_##base; \ +} SAMSUNG_BASE(adc, ADC_BASE) SAMSUNG_BASE(clock, CLOCK_BASE) |