diff options
author | Avi Kivity <avi@qumranet.com> | 2007-06-28 14:15:57 -0400 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2007-07-16 05:05:49 -0400 |
commit | e495606dd09d79f9fa496334ac3958f6ff179d82 (patch) | |
tree | 0ee6495edb52286e7f7a67841c461fea36e782da /drivers/kvm/mmu.c | |
parent | d6d281684913dabb878e2f53219eed5df2cd867b (diff) |
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 49ffbd3da749..b297a6b111ac 100644 --- a/drivers/kvm/mmu.c +++ b/drivers/kvm/mmu.c | |||
@@ -16,16 +16,18 @@ | |||
16 | * the COPYING file in the top-level directory. | 16 | * the COPYING file in the top-level directory. |
17 | * | 17 | * |
18 | */ | 18 | */ |
19 | |||
20 | #include "vmx.h" | ||
21 | #include "kvm.h" | ||
22 | |||
19 | #include <linux/types.h> | 23 | #include <linux/types.h> |
20 | #include <linux/string.h> | 24 | #include <linux/string.h> |
21 | #include <asm/page.h> | ||
22 | #include <linux/mm.h> | 25 | #include <linux/mm.h> |
23 | #include <linux/highmem.h> | 26 | #include <linux/highmem.h> |
24 | #include <linux/module.h> | 27 | #include <linux/module.h> |
25 | #include <asm/cmpxchg.h> | ||
26 | 28 | ||
27 | #include "vmx.h" | 29 | #include <asm/page.h> |
28 | #include "kvm.h" | 30 | #include <asm/cmpxchg.h> |
29 | 31 | ||
30 | #undef MMU_DEBUG | 32 | #undef MMU_DEBUG |
31 | 33 | ||