diff options
author | Avi Kivity <avi@qumranet.com> | 2007-06-28 14:15:57 -0400 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2007-07-16 12:05:49 +0300 |
commit | e495606dd09d79f9fa496334ac3958f6ff179d82 (patch) | |
tree | 0ee6495edb52286e7f7a67841c461fea36e782da /drivers/kvm/mmu.c | |
parent | d6d281684913dabb878e2f53219eed5df2cd867b (diff) | |
download | op-kernel-dev-e495606dd09d79f9fa496334ac3958f6ff179d82.zip op-kernel-dev-e495606dd09d79f9fa496334ac3958f6ff179d82.tar.gz |
KVM: Clean up #includes
Remove unnecessary ones, and rearange the remaining in the standard order.
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/mmu.c')
-rw-r--r-- | drivers/kvm/mmu.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/kvm/mmu.c b/drivers/kvm/mmu.c index 49ffbd3..b297a6b 100644 --- a/drivers/kvm/mmu.c +++ b/drivers/kvm/mmu.c @@ -16,16 +16,18 @@ * the COPYING file in the top-level directory. * */ + +#include "vmx.h" +#include "kvm.h" + #include <linux/types.h> #include <linux/string.h> -#include <asm/page.h> #include <linux/mm.h> #include <linux/highmem.h> #include <linux/module.h> -#include <asm/cmpxchg.h> -#include "vmx.h" -#include "kvm.h" +#include <asm/page.h> +#include <asm/cmpxchg.h> #undef MMU_DEBUG |