x86/xen/apic: Add missing #include <xen/xen.h>
authorIngo Molnar <mingo@kernel.org>
Fri, 18 May 2012 07:34:45 +0000 (09:34 +0200)
committerIngo Molnar <mingo@kernel.org>
Fri, 18 May 2012 07:34:45 +0000 (09:34 +0200)
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>
arch/x86/xen/apic.c

index 1913bf2d2a9cd48a17e813be2fe876f50ea88d94..ec57bd3818a4cdeb0c45d3c3b13cc7a79db85f9b 100644 (file)
@@ -1,9 +1,12 @@
 #include <linux/init.h>
+
 #include <asm/x86_init.h>
 #include <asm/apic.h>
-#include <xen/interface/physdev.h>
 #include <asm/xen/hypercall.h>
 
+#include <xen/xen.h>
+#include <xen/interface/physdev.h>
+
 unsigned int xen_io_apic_read(unsigned apic, unsigned reg)
 {
        struct physdev_apic apic_op;
This page took 0.027585 seconds and 5 git commands to generate.