summaryrefslogtreecommitdiff
path: root/firmware
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 /firmware
parent909e4c6c06e004a6063cab014c12bcef6a2b37e5 (diff)
downloadrockbox-6b22614944824e1609871a11b46d2b49a3f9571a.tar.gz
rockbox-6b22614944824e1609871a11b46d2b49a3f9571a.zip
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
Diffstat (limited to 'firmware')
-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 b0baa90037..e2515c0df0 100644
--- a/firmware/target/arm/s5l8700/mmu-target.h
+++ b/firmware/target/arm/s5l8700/mmu-target.h
@@ -27,15 +27,15 @@
27#define MMU_S5L8700_H 27#define MMU_S5L8700_H
28 28
29/* Cleans entire DCache */ 29/* Cleans entire DCache */
30void clean_dcache(void); 30void clean_dcache(void) ICODE_ATTR;
31 31
32/* Invalidate entire DCache */ 32/* Invalidate entire DCache */
33/* will do writeback */ 33/* will do writeback */
34void invalidate_dcache(void); 34void invalidate_dcache(void) ICODE_ATTR;
35 35
36/* Invalidate entire ICache and DCache */ 36/* Invalidate entire ICache and DCache */
37/* will do writeback */ 37/* will do writeback */
38void invalidate_idcache(void); 38void invalidate_idcache(void) ICODE_ATTR;
39 39
40#define HAVE_CPUCACHE_INVALIDATE 40#define HAVE_CPUCACHE_INVALIDATE
41#define HAVE_CPUCACHE_FLUSH 41#define HAVE_CPUCACHE_FLUSH