diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-01-30 13:33:28 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 13:33:28 +0100 |
commit | 8b2f7ffffe7f247ba237322fee78c528ba88f16b (patch) | |
tree | 14a255f560c9ee0c78778c1f34b909fc66f2148d /arch/x86/kernel/head_32.S | |
parent | 5756dd59f118daacd68ee971a2381360ef769c48 (diff) | |
download | op-kernel-dev-8b2f7ffffe7f247ba237322fee78c528ba88f16b.zip op-kernel-dev-8b2f7ffffe7f247ba237322fee78c528ba88f16b.tar.gz |
x86: fix Section mismatch: reference to .init.text:lguest_entry
fix:
> WARNING: vmlinux.o(.data+0x4): Section mismatch: reference to .init.text:lguest_entry (between 'subarch_entries' and 'stack_start')
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/head_32.S')
-rw-r--r-- | arch/x86/kernel/head_32.S | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86/kernel/head_32.S b/arch/x86/kernel/head_32.S index a2b6331..5d8c573 100644 --- a/arch/x86/kernel/head_32.S +++ b/arch/x86/kernel/head_32.S @@ -9,6 +9,7 @@ .text #include <linux/threads.h> +#include <linux/init.h> #include <linux/linkage.h> #include <asm/segment.h> #include <asm/page.h> @@ -151,7 +152,9 @@ WEAK(xen_entry) /* Unknown implementation; there's really nothing we can do at this point. */ ud2a -.data + + __INITDATA + subarch_entries: .long default_entry /* normal x86/PC */ .long lguest_entry /* lguest hypervisor */ |