diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-09-09 16:41:03 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-09-09 16:41:03 +0000 |
commit | 637bb2e608a67f691394c78166b9bf884e7b3349 (patch) | |
tree | 30cebe21ffa8932fb692722df9e95601030f92d2 /firmware | |
parent | 12a2889f8c47b195824ab0e26d048d99a34accdb (diff) | |
download | rockbox-637bb2e608a67f691394c78166b9bf884e7b3349.tar.gz rockbox-637bb2e608a67f691394c78166b9bf884e7b3349.zip |
Also rename cpucache_invalidate() function for mips. There's more in the target tree of mips which I have overlooked yesterday.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28057 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/target/mips/mmu-mips.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/target/mips/mmu-mips.c b/firmware/target/mips/mmu-mips.c index 92cdecdc85..5ea1015acf 100644 --- a/firmware/target/mips/mmu-mips.c +++ b/firmware/target/mips/mmu-mips.c @@ -169,10 +169,11 @@ void __icache_invalidate_all(void) : "r" (i)); } -void cpucache_invalidate(void) +void cpucache_commit_discard(void) { __icache_invalidate_all(); } +void cpucache_invalidate(void) __attribute__((alias("cpucache_commit_discard"))); void __dcache_invalidate_all(void) { |