From d504e39efd4e64a1a6e01dc85fd8a33fdb196dce Mon Sep 17 00:00:00 2001 From: Randy Dunlap Date: Wed, 30 Jan 2008 13:33:05 +0100 Subject: [PATCH] x86: discover_ebda section mismatch Fix section mismatches. discover_ebda() can be __init. WARNING: vmlinux.o(.text+0x738a): Section mismatch: reference to .init.data:ebda_addr (between 'discover_ebda' and 'get_model_name') WARNING: vmlinux.o(.text+0x73c4): Section mismatch: reference to .init.data:ebda_size (between 'discover_ebda' and 'get_model_name') Signed-off-by: Randy Dunlap Signed-off-by: Ingo Molnar Signed-off-by: Thomas Gleixner --- arch/x86/kernel/setup_64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kernel/setup_64.c b/arch/x86/kernel/setup_64.c index a7124bf..07547fe 100644 --- a/arch/x86/kernel/setup_64.c +++ b/arch/x86/kernel/setup_64.c @@ -248,7 +248,7 @@ static inline void __init reserve_crashkernel(void) unsigned __initdata ebda_addr; unsigned __initdata ebda_size; -static void discover_ebda(void) +static void __init discover_ebda(void) { /* * there is a real-mode segmented pointer pointing to the -- 2.7.4