forked from len0rd/rockbox
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
This commit is contained in:
parent
12a2889f8c
commit
637bb2e608
1 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue