summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/arm/imx31/crt0.S10
1 files changed, 7 insertions, 3 deletions
diff --git a/firmware/target/arm/imx31/crt0.S b/firmware/target/arm/imx31/crt0.S
index 53e18c17df..776699da14 100644
--- a/firmware/target/arm/imx31/crt0.S
+++ b/firmware/target/arm/imx31/crt0.S
@@ -298,7 +298,7 @@ remap_end:
298#endif 298#endif
299 299
300 /* Make memory coherent for devices */ 300 /* Make memory coherent for devices */
301 bl clean_dcache 301 bl cpucache_commit_discard
302 302
303 bl main 303 bl main
304 304
@@ -351,9 +351,13 @@ data_abort_handler:
351 b UIE 351 b UIE
352 352
353/* 256 words of IRQ stack */ 353/* 256 words of IRQ stack */
354 .space 256*4 354 .section .bss
355 .balign 32
356 .space 256*4
355irq_stack: 357irq_stack:
356 358
357/* 256 words of FIQ stack */ 359/* 256 words of FIQ stack */
358 .space 256*4 360 .section .bss
361 .balign 32
362 .space 256*4
359fiq_stack: 363fiq_stack: