diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 18:16:08 +0100 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 19:46:44 +0100 |
commit | cef3767852a9b1a7ff4a8dfe0969e2d32eb728df (patch) | |
tree | 06523207156a47aa9005a7f274c9e7d3858d4c69 /arch/x86/include/asm/kvm.h | |
parent | headers_check fix: x86, e820.h (diff) | |
download | linux-cef3767852a9b1a7ff4a8dfe0969e2d32eb728df.tar.xz linux-cef3767852a9b1a7ff4a8dfe0969e2d32eb728df.zip |
headers_check fix: x86, kvm.h
fix the following 'make headers_check' warnings:
usr/include/asm/kvm.h:9: include of <linux/types.h> is preferred over <asm/types.h>
usr/include/asm/kvm.h:16: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Diffstat (limited to 'arch/x86/include/asm/kvm.h')
-rw-r--r-- | arch/x86/include/asm/kvm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/kvm.h b/arch/x86/include/asm/kvm.h index b95162af0bf6..d2e3bf3608af 100644 --- a/arch/x86/include/asm/kvm.h +++ b/arch/x86/include/asm/kvm.h @@ -6,7 +6,7 @@ * */ -#include <asm/types.h> +#include <linux/types.h> #include <linux/ioctl.h> /* Architectural interrupt line count. */ |