From: Jacek Luczak Date: Fri, 11 Apr 2008 11:28:37 +0000 (+0200) Subject: x86: section mismatch fixes, #1 X-Git-Tag: upstream/snapshot3+hdmi~26319^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=df96323dfaebdf7e17cdf0656096e6ab2158ec76;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git x86: section mismatch fixes, #1 This patch fixes mismatch warnings in smp_checks() (in arch/x86/kernel/smpboot.c): WARNING: arch/x86/kernel/built-in.o(.text+0x11922): Section mismatch in reference from the function smp_checks() to the variable .cpuinit.data:smp_b_stepping The function smp_checks() references the variable __cpuinitdata smp_b_stepping. This is often because smp_checks lacks a __cpuinitdata annotation or the annotation of smp_b_stepping is wrong. Signed-off-by: Jacek Luczak Signed-off-by: Ingo Molnar --- diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index 4517d1c..ca3929b 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c @@ -437,7 +437,7 @@ valid_k7: #endif } -void smp_checks(void) +void __cpuinit smp_checks(void) { if (smp_b_stepping) printk(KERN_WARNING "WARNING: SMP operation may be unreliable"