mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
Fix beast, forgot the asm label when renaming.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28058 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
637bb2e608
commit
409c157089
1 changed files with 5 additions and 4 deletions
|
@ -153,16 +153,17 @@ invalidate_dcache:
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Discards the entire ICache, and commit+discards the entire DCache
|
* Discards the entire ICache, and commit+discards the entire DCache
|
||||||
* void commit_discard_idcache(void);
|
* void cpucache_commit_discard(void);
|
||||||
*/
|
*/
|
||||||
.section .icode, "ax", %progbits
|
.section .icode, "ax", %progbits
|
||||||
.align 2
|
.align 2
|
||||||
.global commit_discard_idcache
|
.global cpucache_commit_discard
|
||||||
.type commit_discard_idcache, %function
|
.type cpucache_commit_discard, %function
|
||||||
.global cpucache_commit_discard @ Alias
|
.global commit_discard_idcache @ Alias
|
||||||
.global invalidate_idcache @ Alias, deprecated
|
.global invalidate_idcache @ Alias, deprecated
|
||||||
.global cpucache_invalidate @ Alias, deprecated
|
.global cpucache_invalidate @ Alias, deprecated
|
||||||
|
|
||||||
|
cpucache_commit_discard:
|
||||||
commit_discard_idcache:
|
commit_discard_idcache:
|
||||||
invalidate_idcache:
|
invalidate_idcache:
|
||||||
cpucache_invalidate:
|
cpucache_invalidate:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue