aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndi Kleen <ak@suse.de>2008-01-30 13:32:49 +0100
committerIngo Molnar <mingo@elte.hu>2008-01-30 13:32:49 +0100
commite3cfac84cfbc8c9f17817573befc0f4913b1a4dc (patch)
treecab21694a582fff19913e02cedeb615d44f6b5a8
parentx86: Set CFQ as default in 32-bit defconfig (diff)
downloadlinux-dev-e3cfac84cfbc8c9f17817573befc0f4913b1a4dc.tar.xz
linux-dev-e3cfac84cfbc8c9f17817573befc0f4913b1a4dc.zip
x86: mark memory_setup __init
Otherwise WARNING: vmlinux.o(.text+0x64a9): Section mismatch: reference to .init.text:machine_specific_memory_setup (between 'memory_setup' and 'show_cpuinfo') Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--arch/x86/kernel/setup_64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/setup_64.c b/arch/x86/kernel/setup_64.c
index 1caf7458dc48..a7124bfb8578 100644
--- a/arch/x86/kernel/setup_64.c
+++ b/arch/x86/kernel/setup_64.c
@@ -279,7 +279,7 @@ static void discover_ebda(void)
}
/* Overridden in paravirt.c if CONFIG_PARAVIRT */
-void __attribute__((weak)) memory_setup(void)
+void __attribute__((weak)) __init memory_setup(void)
{
machine_specific_memory_setup();
}