diff options
author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2014-11-13 17:59:14 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-11-20 10:13:54 +0100 |
commit | 28970ef66da76aefdb21cca74f22edd771511284 (patch) | |
tree | 601de62dfd51e73748c34758e0e0350a51e33d6c /arch/arm/lib/relocate.S | |
parent | adc5a667b81e7ef1278b0ff4787bd80df9943108 (diff) | |
download | u-boot-28970ef66da76aefdb21cca74f22edd771511284.tar.gz u-boot-28970ef66da76aefdb21cca74f22edd771511284.tar.xz u-boot-28970ef66da76aefdb21cca74f22edd771511284.zip |
cosmetic: arm: fix whitespace in arch/arm/lib/relocate.S
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
Diffstat (limited to 'arch/arm/lib/relocate.S')
-rw-r--r-- | arch/arm/lib/relocate.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/lib/relocate.S b/arch/arm/lib/relocate.S index b4a258ce5c..6ede41c156 100644 --- a/arch/arm/lib/relocate.S +++ b/arch/arm/lib/relocate.S @@ -74,8 +74,8 @@ fixnext: ldr r0, [r9, #GD_RELOCADDR] /* r0 = gd->relocaddr */ mrc p15, 0, r2, c1, c0, 0 /* V bit (bit[13]) in CP15 c1 */ ands r2, r2, #(1 << 13) - ldreq r1, =0x00000000 /* If V=0 */ - ldrne r1, =0xFFFF0000 /* If V=1 */ + ldreq r1, =0x00000000 /* If V=0 */ + ldrne r1, =0xFFFF0000 /* If V=1 */ ldmia r0!, {r2-r8,r10} stmia r1!, {r2-r8,r10} ldmia r0!, {r2-r8,r10} @@ -96,9 +96,9 @@ relocate_done: /* ARMv4- don't know bx lr but the assembler fails to see that */ #ifdef __ARM_ARCH_4__ - mov pc, lr + mov pc, lr #else - bx lr + bx lr #endif ENDPROC(relocate_code) |