diff options
author | Benoît Thébaudeau | 2013-04-11 09:35:53 +0000 |
---|---|---|
committer | Albert ARIBAUD | 2013-04-12 07:55:07 +0200 |
commit | 5c6db120fc184bae7a344a4e5da83b21164b59a6 (patch) | |
tree | 7dd8c5c9434937e915cf4428b1ce2beaea7554a4 /arch/arm/cpu/arm1136/start.S | |
parent | ac415a5720aa3c2b2ca95498b68e2062a185c1d1 (diff) |
arm: Remove unused relocate_code() parameters
Commit e05e5de7fae5bec79617e113916dac6631251156 made the 2 1st parameters of
ARM's relocate_code() useless since it moved the code handling them to crt0.S.
So, drop these parameters.
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'arch/arm/cpu/arm1136/start.S')
-rw-r--r-- | arch/arm/cpu/arm1136/start.S | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/cpu/arm1136/start.S b/arch/arm/cpu/arm1136/start.S index e36d7d32b92..ad24b80641d 100644 --- a/arch/arm/cpu/arm1136/start.S +++ b/arch/arm/cpu/arm1136/start.S @@ -174,15 +174,13 @@ next: /*------------------------------------------------------------------------------*/ /* - * void relocate_code (addr_sp, gd, addr_moni) + * void relocate_code(addr_moni) * * This function relocates the monitor code. */ .globl relocate_code relocate_code: - mov r4, r0 /* save addr_sp */ - mov r5, r1 /* save addr of gd */ - mov r6, r2 /* save addr of destination */ + mov r6, r0 /* save addr of destination */ adr r0, _start subs r9, r6, r0 /* r9 <- relocation offset */ |