diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2011-02-18 22:14:09 -0500 |
---|---|---|
committer | David Brown <davidb@codeaurora.org> | 2011-02-28 15:40:05 -0500 |
commit | 0693a317b609a5d31d29e26c4f28ea079d5477f4 (patch) | |
tree | b624d6ed2c784a3998b582b87b90cc5c2db9e46d /arch/arm/mach-msm | |
parent | 3162aa2f1b55849651a05052d3e5f5e640ea44fa (diff) |
msm: headsmp.S: Fix section mismatch
WARNING: vmlinux.o(.cpuinit.text+0xc80): Section mismatch in
reference from the function boot_secondary() to the variable
.init.text:msm_secondary_startup
The function __cpuinit boot_secondary() references a variable
__init msm_secondary_startup. If msm_secondary_startup is only
used by boot_secondary then annotate msm_secondary_startup with
a matching annotation.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: David Brown <davidb@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-msm')
-rw-r--r-- | arch/arm/mach-msm/headsmp.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-msm/headsmp.S b/arch/arm/mach-msm/headsmp.S index d0c214338df9..0c631a9f8647 100644 --- a/arch/arm/mach-msm/headsmp.S +++ b/arch/arm/mach-msm/headsmp.S | |||
@@ -11,7 +11,7 @@ | |||
11 | #include <linux/linkage.h> | 11 | #include <linux/linkage.h> |
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | 13 | ||
14 | __INIT | 14 | __CPUINIT |
15 | 15 | ||
16 | /* | 16 | /* |
17 | * MSM specific entry point for secondary CPUs. This provides | 17 | * MSM specific entry point for secondary CPUs. This provides |