diff options
author | Magnus Damm <damm@opensource.se> | 2010-12-20 11:04:50 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-12-21 00:27:41 +0900 |
commit | 6155f77d09b968f591876f368d4843168910449e (patch) | |
tree | 4b81ed87a25dd28646a2143eccd7bd9a6516bb16 /arch/arm/mach-shmobile | |
parent | 72f4d57923d2aa651db060a71a6f6211654c119e (diff) |
ARM: mach-shmobile: Clean up headsmp.S
Use PAGE_OFFSET and PHYS_OFFSET for secondary_startup
entry point as recommended by Russell King.
Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/arm/mach-shmobile')
-rw-r--r-- | arch/arm/mach-shmobile/headsmp.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/headsmp.S b/arch/arm/mach-shmobile/headsmp.S index a5c5af1e6bc..d4cec6b4c7d 100644 --- a/arch/arm/mach-shmobile/headsmp.S +++ b/arch/arm/mach-shmobile/headsmp.S @@ -12,6 +12,7 @@ */ #include <linux/linkage.h> #include <linux/init.h> +#include <asm/memory.h> __INIT @@ -23,4 +24,4 @@ .align 12 ENTRY(shmobile_secondary_vector) ldr pc, 1f -1: .long secondary_startup - CONFIG_PAGE_OFFSET + CONFIG_MEMORY_START +1: .long secondary_startup - PAGE_OFFSET + PHYS_OFFSET |