diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-12-16 12:37:07 -0800 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-16 21:50:31 +0100 |
commit | ecbf29cdb3990c83d90d0c4187c89fb2ce423367 (patch) | |
tree | a1b795297152df380c9592ebbeb35804a23a2b29 /drivers/xen/features.c | |
parent | f63c2f248959366cd11bfa476f866737047cf663 (diff) | |
download | kernel-crypto-ecbf29cdb3990c83d90d0c4187c89fb2ce423367.tar.gz kernel-crypto-ecbf29cdb3990c83d90d0c4187c89fb2ce423367.tar.xz kernel-crypto-ecbf29cdb3990c83d90d0c4187c89fb2ce423367.zip |
xen: clean up asm/xen/hypervisor.h
Impact: cleanup
hypervisor.h had accumulated a lot of crud, including lots of spurious
#includes. Clean it all up, and go around fixing up everything else
accordingly.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers/xen/features.c')
-rw-r--r-- | drivers/xen/features.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/xen/features.c b/drivers/xen/features.c index 0707714e40d..99eda169c77 100644 --- a/drivers/xen/features.c +++ b/drivers/xen/features.c @@ -8,7 +8,11 @@ #include <linux/types.h> #include <linux/cache.h> #include <linux/module.h> -#include <asm/xen/hypervisor.h> + +#include <asm/xen/hypercall.h> + +#include <xen/interface/xen.h> +#include <xen/interface/version.h> #include <xen/features.h> u8 xen_features[XENFEAT_NR_SUBMAPS * 32] __read_mostly; |