summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-09-09 14:35:47 +0000
committerThomas Martitz <kugel@rockbox.org>2010-09-09 14:35:47 +0000
commitcec7c99613b3c11deb8a05deecd7ee9d16b5ea8a (patch)
tree96dd6f86efc2fc145e40fb35ba07708064ac08f6
parent6af762f2bfdadd90875997ec7c2035184d23f8dd (diff)
downloadrockbox-cec7c99613b3c11deb8a05deecd7ee9d16b5ea8a.tar.gz
rockbox-cec7c99613b3c11deb8a05deecd7ee9d16b5ea8a.zip
Forgot to rename cpucache_flush/_invalidate for PP502x.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28053 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/arm/system-pp502x.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/firmware/target/arm/system-pp502x.c b/firmware/target/arm/system-pp502x.c
index 700686b427..c4bf81dc5a 100644
--- a/firmware/target/arm/system-pp502x.c
+++ b/firmware/target/arm/system-pp502x.c
@@ -193,7 +193,7 @@ void __attribute__((interrupt("IRQ"))) irq_handler(void)
193 to extend the funtions to do alternate cache configurations. */ 193 to extend the funtions to do alternate cache configurations. */
194 194
195#ifndef BOOTLOADER 195#ifndef BOOTLOADER
196void ICODE_ATTR cpucache_flush(void) 196void ICODE_ATTR cpucache_commit(void)
197{ 197{
198 if (CACHE_CTL & CACHE_CTL_ENABLE) 198 if (CACHE_CTL & CACHE_CTL_ENABLE)
199 { 199 {
@@ -202,8 +202,9 @@ void ICODE_ATTR cpucache_flush(void)
202 nop; nop; nop; nop; 202 nop; nop; nop; nop;
203 } 203 }
204} 204}
205void cpucache_flush(void) __attribute__((alias("cpucache_commit")));
205 206
206void ICODE_ATTR cpucache_invalidate(void) 207void ICODE_ATTR cpucache_commit_discard(void)
207{ 208{
208 if (CACHE_CTL & CACHE_CTL_ENABLE) 209 if (CACHE_CTL & CACHE_CTL_ENABLE)
209 { 210 {
@@ -212,6 +213,7 @@ void ICODE_ATTR cpucache_invalidate(void)
212 nop; nop; nop; nop; 213 nop; nop; nop; nop;
213 } 214 }
214} 215}
216void cpucache_invalidate(void) __attribute__((alias("cpucache_commit_discard")));
215 217
216static void init_cache(void) 218static void init_cache(void)
217{ 219{