From: Arnd Bergmann Date: Wed, 8 May 2013 12:18:04 +0000 (+0200) Subject: ARM: shmobile: fix sleep-r8a7740.S miscompiles X-Git-Tag: next-20130527~8^2^17~4 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d44bf77937db60672fe17efae02932334a080dfc;p=karo-tx-linux.git ARM: shmobile: fix sleep-r8a7740.S miscompiles The newly added sleep-r8a7740.S file in shmobile does not actually build because of renamed symbols. Signed-off-by: Arnd Bergmann Cc: Bastian Hecht Signed-off-by: Simon Horman --- diff --git a/arch/arm/mach-shmobile/sleep-r8a7740.S b/arch/arm/mach-shmobile/sleep-r8a7740.S index 435531bd4155..982eacbfaa43 100644 --- a/arch/arm/mach-shmobile/sleep-r8a7740.S +++ b/arch/arm/mach-shmobile/sleep-r8a7740.S @@ -32,7 +32,7 @@ ENTRY(r8a7740_shutdown) wfi_loop: bl cpu_v7_do_idle b wfi_loop -ENDPROC(r8a7740) +ENDPROC(r8a7740_shutdown) .text ENTRY(v7_cpu_resume) @@ -53,5 +53,5 @@ ENDPROC(v7_cpu_resume) ENTRY(r8a7740_resume) ldr pc, 1f 1: .long v7_cpu_resume - PAGE_OFFSET + PLAT_PHYS_OFFSET -ENDPROC(r8a7740_resume_core_standby) +ENDPROC(r8a7740_resume) #endif