]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
ARM: OMAP: Fix section mismatch warning for platform_cpu_die()
authorSantosh Shilimkar <santosh.shilimkar@ti.com>
Wed, 22 Feb 2012 10:40:04 +0000 (16:10 +0530)
committerTony Lindgren <tony@atomide.com>
Tue, 28 Feb 2012 22:34:12 +0000 (14:34 -0800)
WARNING: vmlinux.o(.text+0x226d0):
Section mismatch in reference from the function
platform_cpu_die() to the function .cpuinit.text:omap4_hotplug_cpu()
The function platform_cpu_die() references
the function __cpuinit omap4_hotplug_cpu().
This is often because platform_cpu_die lacks a __cpuinit
annotation or the annotation of omap4_hotplug_cpu is wrong.

Thanks to Russell King for suggesting to use __ref instead of
the initial (and wrong) approach to use __cpuinit.

Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/omap-hotplug.c

index adbe4d8c7cafdcd64d52c5880530f096ffacaebd..56c345b8b931b1d00b926152ea1459390884c500 100644 (file)
@@ -33,7 +33,7 @@ int platform_cpu_kill(unsigned int cpu)
  * platform-specific code to shutdown a CPU
  * Called with IRQs disabled
  */
-void platform_cpu_die(unsigned int cpu)
+void __ref platform_cpu_die(unsigned int cpu)
 {
        unsigned int this_cpu;