diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-07-20 15:04:57 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-20 15:03:45 (GMT) |
commit | 7be42004065ce4df193aeef5befd26805267d0d9 (patch) | |
tree | b5feb18695578b1eb36a4af1a9520391cc23f96a /arch/x86/lguest | |
parent | caf43bf7c6a55e89b6df5179df434d67e24aa32e (diff) | |
download | linux-7be42004065ce4df193aeef5befd26805267d0d9.tar.xz |
x86, lguest: fix apic_ops build on UP
fix:
arch/x86/lguest/boot.c:816: error: variable ‘lguest_basic_apic_ops’ has initializer but incomplete type
arch/x86/lguest/boot.c:817: error: unknown field ‘read’ specified in initializer
[...]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/lguest')
-rw-r--r-- | arch/x86/lguest/boot.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index 35c4349..756fc48 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c @@ -55,6 +55,7 @@ #include <linux/lguest_launcher.h> #include <linux/virtio_console.h> #include <linux/pm.h> +#include <asm/apic.h> #include <asm/lguest.h> #include <asm/paravirt.h> #include <asm/param.h> |