diff options
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/export/system.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/firmware/export/system.h b/firmware/export/system.h index 66a21332fc..94922871b6 100644 --- a/firmware/export/system.h +++ b/firmware/export/system.h | |||
@@ -181,6 +181,11 @@ enum { | |||
181 | #include "system-target.h" | 181 | #include "system-target.h" |
182 | #endif | 182 | #endif |
183 | #endif | 183 | #endif |
184 | #ifndef SIMULATOR | ||
185 | #if CONFIG_CPU == S3C2440 | ||
186 | #include "system-target.h" | ||
187 | #endif | ||
188 | #endif | ||
184 | 189 | ||
185 | #if CONFIG_CPU == SH7034 | 190 | #if CONFIG_CPU == SH7034 |
186 | #define or_b(mask, address) \ | 191 | #define or_b(mask, address) \ |
@@ -342,7 +347,9 @@ static inline void disable_fiq(void) | |||
342 | ); | 347 | ); |
343 | } | 348 | } |
344 | 349 | ||
350 | #if CONFIG_CPU != S3C2440 | ||
345 | #define invalidate_icache() | 351 | #define invalidate_icache() |
352 | #endif | ||
346 | 353 | ||
347 | #if CONFIG_CPU == PNX0101 | 354 | #if CONFIG_CPU == PNX0101 |
348 | typedef void (*interrupt_handler_t)(void); | 355 | typedef void (*interrupt_handler_t)(void); |