diff options
author | Benoît Thébaudeau | 2013-04-11 09:35:43 +0000 |
---|---|---|
committer | Albert ARIBAUD | 2013-04-12 07:55:05 +0200 |
commit | 959eaa74b83e4d18be5829a5a7c8deaa11aac7e0 (patch) | |
tree | 7605b7a903f93b92626b86306c21ebace166b3b8 /arch/arm/cpu/arm_intcm | |
parent | 508611bcb7d2a0fd5e7ead35c45f68b6e6c101ac (diff) |
arm: relocate_code() is no longer noreturn
Commit e05e5de7fae5bec79617e113916dac6631251156 made ARM's relocate_code()
return to its caller, but it did not update its declaration accordingly.
Fixing this function declaration fixes dropped C code following calls to
relocate_code().
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'arch/arm/cpu/arm_intcm')
-rw-r--r-- | arch/arm/cpu/arm_intcm/start.S | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/arm/cpu/arm_intcm/start.S b/arch/arm/cpu/arm_intcm/start.S index a69fb17e5ed..d0f8a48bfc5 100644 --- a/arch/arm/cpu/arm_intcm/start.S +++ b/arch/arm/cpu/arm_intcm/start.S @@ -154,9 +154,7 @@ reset: /* * void relocate_code (addr_sp, gd, addr_moni) * - * This "function" does not return, instead it continues in RAM - * after relocating the monitor code. - * + * This function relocates the monitor code. */ .globl relocate_code relocate_code: |