diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 05:13:44 (GMT) |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-02-01 05:31:23 (GMT) |
commit | e42ec2418fa96f98ed8d4e6d8a572a7200156df6 (patch) | |
tree | 163b6c775efc9aefabe31de24ad4b5b24f53bfc3 | |
parent | 4af3bf6b393a2cec947cd42cc10fc03f5b782484 (diff) | |
download | linux-e42ec2418fa96f98ed8d4e6d8a572a7200156df6.tar.xz |
headers_check fix: arm, swab.h
fix the following 'make headers_check' warnings:
usr/include/asm-arm/swab.h:19: include of <linux/types.h> is preferred over <asm/types.h>
usr/include/asm-arm/swab.h:25: 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/arm/include/asm/swab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/swab.h b/arch/arm/include/asm/swab.h index 27a689b..ca2bf2f 100644 --- a/arch/arm/include/asm/swab.h +++ b/arch/arm/include/asm/swab.h @@ -16,7 +16,7 @@ #define __ASM_ARM_SWAB_H #include <linux/compiler.h> -#include <asm/types.h> +#include <linux/types.h> #if !defined(__STRICT_ANSI__) || defined(__KERNEL__) # define __SWAB_64_THRU_32__ |