summaryrefslogtreecommitdiff
path: root/firmware/target/arm/system-target.h
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-09-28 10:54:27 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-09-28 10:54:27 +0000
commita13a1d5492ce30c51f4b2277819d2a6736705c90 (patch)
tree6e86d012864b1a5e91c45adf509abef8af49efab /firmware/target/arm/system-target.h
parent7914e90738ff37e6378b37632eb1f05bab7354d5 (diff)
downloadrockbox-a13a1d5492ce30c51f4b2277819d2a6736705c90.tar.gz
rockbox-a13a1d5492ce30c51f4b2277819d2a6736705c90.zip
Anti-red: No need for COP initialization in the bootloaders nor idle stacks.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14880 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/system-target.h')
-rw-r--r--firmware/target/arm/system-target.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/target/arm/system-target.h b/firmware/target/arm/system-target.h
index 4811f7e2d6..6dc317e427 100644
--- a/firmware/target/arm/system-target.h
+++ b/firmware/target/arm/system-target.h
@@ -71,6 +71,7 @@ static inline unsigned int current_core(void)
71 return core; 71 return core;
72} 72}
73 73
74#ifndef BOOTLOADER
74#define CACHE_FUNCTIONS_AS_CALL 75#define CACHE_FUNCTIONS_AS_CALL
75 76
76#define HAVE_INVALIDATE_ICACHE 77#define HAVE_INVALIDATE_ICACHE
@@ -78,6 +79,7 @@ void invalidate_icache(void);
78 79
79#define HAVE_FLUSH_ICACHE 80#define HAVE_FLUSH_ICACHE
80void flush_icache(void); 81void flush_icache(void);
82#endif
81 83
82#else 84#else
83unsigned int current_core(void); 85unsigned int current_core(void);