aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Deacon <will.deacon@arm.com>2012-03-29 11:52:08 +0100
committerJon Medhurst <tixy@linaro.org>2012-07-25 13:03:23 +0100
commitc9e3a1d6adb832e7bc1d326b46566afddbfe1d92 (patch)
treeaeed9cf8df8bac6c91453d572d7ddade0e66613a
parent89ad45501243eb74a827ba3a09c1c3c61011bb37 (diff)
ARM: hotplug: remove section mismatch on access to pen_releasetracking-tracking-armlt-misc-fixes-ll-20120727.0
pen_release is marked as __cpuinitdata, so make sure that functions using it are marked with __cpuinit. Signed-off-by: Will Deacon <will.deacon@arm.com>
-rw-r--r--arch/arm/mach-realview/hotplug.c2
-rw-r--r--arch/arm/mach-vexpress/hotplug.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-realview/hotplug.c b/arch/arm/mach-realview/hotplug.c
index 57d9efba2956..77b23fa0db92 100644
--- a/arch/arm/mach-realview/hotplug.c
+++ b/arch/arm/mach-realview/hotplug.c
@@ -99,7 +99,7 @@ int platform_cpu_kill(unsigned int cpu)
*
* Called with IRQs disabled
*/
-void platform_cpu_die(unsigned int cpu)
+void __cpuinit platform_cpu_die(unsigned int cpu)
{
int spurious = 0;
diff --git a/arch/arm/mach-vexpress/hotplug.c b/arch/arm/mach-vexpress/hotplug.c
index c504a72b94d6..b0a3f7df70ba 100644
--- a/arch/arm/mach-vexpress/hotplug.c
+++ b/arch/arm/mach-vexpress/hotplug.c
@@ -94,7 +94,7 @@ int platform_cpu_kill(unsigned int cpu)
*
* Called with IRQs disabled
*/
-void platform_cpu_die(unsigned int cpu)
+void __cpuinit platform_cpu_die(unsigned int cpu)
{
int spurious = 0;