aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/head_32.S
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2008-01-30 13:33:28 +0100
committerIngo Molnar <mingo@elte.hu>2008-01-30 13:33:28 +0100
commit8b2f7ffffe7f247ba237322fee78c528ba88f16b (patch)
tree14a255f560c9ee0c78778c1f34b909fc66f2148d /arch/x86/kernel/head_32.S
parentx86_32: always run the full set of paging state. (diff)
downloadlinux-dev-8b2f7ffffe7f247ba237322fee78c528ba88f16b.tar.xz
linux-dev-8b2f7ffffe7f247ba237322fee78c528ba88f16b.zip
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.S5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86/kernel/head_32.S b/arch/x86/kernel/head_32.S
index a2b6331434da..5d8c5730686b 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 */