From: Prarit Bhargava Date: Wed, 2 May 2007 17:27:05 +0000 (+0200) Subject: [PATCH] i386: Add __init to probe_bigsmp X-Git-Tag: v2.6.22-rc1~1011^2~206 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=e319af1d8722bc3fb61ed6968c88bb66fbb3f58e;p=linux-2.6-omap-h63xx.git [PATCH] i386: Add __init to probe_bigsmp Add __init to probe_bigsmp. All callers are __init and data being examined is __initdata. Resolves MODPOST warning similar to: WARNING: vmlinux - Section mismatch: reference to .init.data: from .text between 'probe_bigsmp' (at offset 0xc0401e56) and 'init_apic_ldr' Signed-off-by: Prarit Bhargava Signed-off-by: Andi Kleen --- diff --git a/arch/i386/mach-generic/bigsmp.c b/arch/i386/mach-generic/bigsmp.c index 8a210fa915b..e932d3485ae 100644 --- a/arch/i386/mach-generic/bigsmp.c +++ b/arch/i386/mach-generic/bigsmp.c @@ -45,7 +45,7 @@ static struct dmi_system_id __initdata bigsmp_dmi_table[] = { }; -static int probe_bigsmp(void) +static int __init probe_bigsmp(void) { if (def_to_bigsmp) dmi_bigsmp = 1;