summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sparmann <theseven@rockbox.org>2010-02-16 22:57:49 +0000
committerMichael Sparmann <theseven@rockbox.org>2010-02-16 22:57:49 +0000
commit6b22614944824e1609871a11b46d2b49a3f9571a (patch)
tree8b7b9ddd82dc80c81a5783cf9d8d0ca25a406c4f
parent909e4c6c06e004a6063cab014c12bcef6a2b37e5 (diff)
downloadrockbox-6b22614944824e1609871a11b46d2b49a3f9571a.zip
rockbox-6b22614944824e1609871a11b46d2b49a3f9571a.tar.gz
rockbox-6b22614944824e1609871a11b46d2b49a3f9571a.tar.bz2
rockbox-6b22614944824e1609871a11b46d2b49a3f9571a.tar.xz
Hopefully fix Nano2G rolo again. We have enough IRAM anyways.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24710 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/arm/s5l8700/mmu-target.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/s5l8700/mmu-target.h b/firmware/target/arm/s5l8700/mmu-target.h
index b0baa90..e2515c0 100644
--- a/firmware/target/arm/s5l8700/mmu-target.h
+++ b/firmware/target/arm/s5l8700/mmu-target.h
@@ -27,15 +27,15 @@
#define MMU_S5L8700_H
/* Cleans entire DCache */
-void clean_dcache(void);
+void clean_dcache(void) ICODE_ATTR;
/* Invalidate entire DCache */
/* will do writeback */
-void invalidate_dcache(void);
+void invalidate_dcache(void) ICODE_ATTR;
/* Invalidate entire ICache and DCache */
/* will do writeback */
-void invalidate_idcache(void);
+void invalidate_idcache(void) ICODE_ATTR;
#define HAVE_CPUCACHE_INVALIDATE
#define HAVE_CPUCACHE_FLUSH