diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-01-30 07:33:28 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:28 -0500 |
commit | 8b2f7ffffe7f247ba237322fee78c528ba88f16b (patch) | |
tree | 14a255f560c9ee0c78778c1f34b909fc66f2148d /arch/x86/kernel/head_32.S | |
parent | 5756dd59f118daacd68ee971a2381360ef769c48 (diff) |
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 a2b6331434da..5d8c5730686b 100644 --- a/arch/x86/kernel/head_32.S +++ b/arch/x86/kernel/head_32.S | |||
@@ -9,6 +9,7 @@ | |||
9 | 9 | ||
10 | .text | 10 | .text |
11 | #include <linux/threads.h> | 11 | #include <linux/threads.h> |
12 | #include <linux/init.h> | ||
12 | #include <linux/linkage.h> | 13 | #include <linux/linkage.h> |
13 | #include <asm/segment.h> | 14 | #include <asm/segment.h> |
14 | #include <asm/page.h> | 15 | #include <asm/page.h> |
@@ -151,7 +152,9 @@ WEAK(xen_entry) | |||
151 | /* Unknown implementation; there's really | 152 | /* Unknown implementation; there's really |
152 | nothing we can do at this point. */ | 153 | nothing we can do at this point. */ |
153 | ud2a | 154 | ud2a |
154 | .data | 155 | |
156 | __INITDATA | ||
157 | |||
155 | subarch_entries: | 158 | subarch_entries: |
156 | .long default_entry /* normal x86/PC */ | 159 | .long default_entry /* normal x86/PC */ |
157 | .long lguest_entry /* lguest hypervisor */ | 160 | .long lguest_entry /* lguest hypervisor */ |