From 4a5cf4838b06b8e06ccbc92ea2ac346dbff770dd Mon Sep 17 00:00:00 2001 From: Will Deacon Date: Thu, 29 Mar 2012 11:52:08 +0100 Subject: ARM: hotplug: remove section mismatch on access to pen_release pen_release is marked as __cpuinitdata, so make sure that functions using it are marked with __cpuinit. Signed-off-by: Will Deacon --- arch/arm/mach-realview/hotplug.c | 2 +- arch/arm/mach-vexpress/hotplug.c | 2 +- 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; -- cgit v1.2.3