GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / mm / abort-nommu.S
blob625e580945b51580af02a3663cd2666ff74893db
1 #include <linux/linkage.h>
2 #include <asm/assembler.h>
3 /*
4  * Function: nommu_early_abort
5  *
6  * Params  : r2 = address of aborted instruction
7  *         : r3 = saved SPSR
8  *
9  * Returns : r0 = 0 (abort address)
10  *         : r1 = 0 (FSR)
11  *
12  * Note: There is no FSR/FAR on !CPU_CP15_MMU cores.
13  *       Just fill zero into the registers.
14  */
15         .align  5
16 ENTRY(nommu_early_abort)
17         mov     r0, #0                          @ clear r0, r1 (no FSR/FAR)
18         mov     r1, #0
19         mov     pc, lr
20 ENDPROC(nommu_early_abort)