diff options
| author | Michael Sparmann <theseven@rockbox.org> | 2010-03-11 18:08:28 +0000 |
|---|---|---|
| committer | Michael Sparmann <theseven@rockbox.org> | 2010-03-11 18:08:28 +0000 |
| commit | e39b653947ac8acfa89f1e02541570925eaf5593 (patch) | |
| tree | 74e24d2171c3a484ab3360aa7838394479d12f21 | |
| parent | 1fd57a2a87b625d00d16916532f61392d0e9f84f (diff) | |
| download | rockbox-e39b653947ac8acfa89f1e02541570925eaf5593.zip rockbox-e39b653947ac8acfa89f1e02541570925eaf5593.tar.gz rockbox-e39b653947ac8acfa89f1e02541570925eaf5593.tar.bz2 rockbox-e39b653947ac8acfa89f1e02541570925eaf5593.tar.xz | |
Fix Nano2G rolo once again
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25117 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/target/arm/s5l8700/mmu-s5l8700.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/s5l8700/mmu-s5l8700.S b/firmware/target/arm/s5l8700/mmu-s5l8700.S index d6098a8..f2795d5 100644 --- a/firmware/target/arm/s5l8700/mmu-s5l8700.S +++ b/firmware/target/arm/s5l8700/mmu-s5l8700.S @@ -27,7 +27,7 @@ * Cleans entire DCache
* void clean_dcache(void);
*/
- .section .text, "ax", %progbits
+ .section .icode, "ax", %progbits
.align 2
.global clean_dcache
.type clean_dcache, %function
@@ -55,7 +55,7 @@ cpucache_flush: * will do writeback
* void invalidate_dcache(void);
*/
- .section .text, "ax", %progbits
+ .section .icode, "ax", %progbits
.align 2
.global invalidate_dcache
.type invalidate_dcache, %function
@@ -81,7 +81,7 @@ invalidate_dcache: * will do writeback
* void invalidate_idcache(void);
*/
- .section .text, "ax", %progbits
+ .section .icode, "ax", %progbits
.align 2
.global invalidate_idcache
.type invalidate_idcache, %function
|