diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 22:57:38 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 00:19:32 +0530 |
commit | 7cff3608d2553a045b676fa81b0cf54e4f2cc5ce (patch) | |
tree | 4f55eb89edd5401136b8dc6482b18fe27d9abcbf | |
parent | 2de548faa78c650bb20c4680ee3a225cca33a45d (diff) | |
download | linux-3.10-7cff3608d2553a045b676fa81b0cf54e4f2cc5ce.tar.gz linux-3.10-7cff3608d2553a045b676fa81b0cf54e4f2cc5ce.tar.bz2 linux-3.10-7cff3608d2553a045b676fa81b0cf54e4f2cc5ce.zip |
headers_check fix: x86, swab.h
fix the following 'make headers_check' warnings:
usr/include/asm/swab.h:4: include of <linux/types.h> is preferred over <asm/types.h>
usr/include/asm/swab.h:7: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
-rw-r--r-- | arch/x86/include/asm/swab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/swab.h b/arch/x86/include/asm/swab.h index 306d4178ffc..557cd9f0066 100644 --- a/arch/x86/include/asm/swab.h +++ b/arch/x86/include/asm/swab.h @@ -1,7 +1,7 @@ #ifndef _ASM_X86_SWAB_H #define _ASM_X86_SWAB_H -#include <asm/types.h> +#include <linux/types.h> #include <linux/compiler.h> static inline __attribute_const__ __u32 __arch_swab32(__u32 val) |