diff options
| author | Ingo Molnar <mingo@kernel.org> | 2012-05-18 03:34:45 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2012-05-18 03:34:45 -0400 |
| commit | 87e4baacaeba098e217b14e9d2f6af428fe3f657 (patch) | |
| tree | 0a2ee2ab2456f6192aa608ddfb9b8069238f191f | |
| parent | d1ecad6eee8629c6b425580aad76cf99b85956e9 (diff) | |
x86/xen/apic: Add missing #include <xen/xen.h>
This file depends on <xen/xen.h>, but the dependency was hidden due
to: <asm/acpi.h> -> <asm/trampoline.h> -> <asm/io.h> -> <xen/xen.h>
With the removal of <asm/trampoline.h>, this exposed the missing
Cc: Len Brown <lenb@kernel.org>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: Jarkko Sakkinen <jarkko.sakkinen@intel.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Link: http://lkml.kernel.org/n/tip-7ccybvue6mw6wje3uxzzcglj@git.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
| -rw-r--r-- | arch/x86/xen/apic.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86/xen/apic.c b/arch/x86/xen/apic.c index 1913bf2d2a9c..ec57bd3818a4 100644 --- a/arch/x86/xen/apic.c +++ b/arch/x86/xen/apic.c | |||
| @@ -1,9 +1,12 @@ | |||
| 1 | #include <linux/init.h> | 1 | #include <linux/init.h> |
| 2 | |||
| 2 | #include <asm/x86_init.h> | 3 | #include <asm/x86_init.h> |
| 3 | #include <asm/apic.h> | 4 | #include <asm/apic.h> |
| 4 | #include <xen/interface/physdev.h> | ||
| 5 | #include <asm/xen/hypercall.h> | 5 | #include <asm/xen/hypercall.h> |
| 6 | 6 | ||
| 7 | #include <xen/xen.h> | ||
| 8 | #include <xen/interface/physdev.h> | ||
| 9 | |||
| 7 | unsigned int xen_io_apic_read(unsigned apic, unsigned reg) | 10 | unsigned int xen_io_apic_read(unsigned apic, unsigned reg) |
| 8 | { | 11 | { |
| 9 | struct physdev_apic apic_op; | 12 | struct physdev_apic apic_op; |
