diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 10:55:12 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-02-01 11:01:24 +0530 |
commit | 295803eea178d777cf3813b16696c54b0b2bcd23 (patch) | |
tree | 9900b6e26214fdbb2649a11f04ce13109a5327e3 /arch/h8300 | |
parent | dacd762eabf69e32f0e9181f99fd19b6f96ea5c5 (diff) | |
download | op-kernel-dev-295803eea178d777cf3813b16696c54b0b2bcd23.zip op-kernel-dev-295803eea178d777cf3813b16696c54b0b2bcd23.tar.gz |
headers_check fix: h8300, swab.h
fix the following 'make headers_check' warning:
usr/include/asm-h8300/swab.h:4: include of <linux/types.h> is preferred over <asm/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Diffstat (limited to 'arch/h8300')
-rw-r--r-- | arch/h8300/include/asm/swab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/h8300/include/asm/swab.h b/arch/h8300/include/asm/swab.h index c108f39..39abbf5 100644 --- a/arch/h8300/include/asm/swab.h +++ b/arch/h8300/include/asm/swab.h @@ -1,7 +1,7 @@ #ifndef _H8300_SWAB_H #define _H8300_SWAB_H -#include <asm/types.h> +#include <linux/types.h> #if defined(__GNUC__) && !defined(__STRICT_ANSI__) || defined(__KERNEL__) # define __SWAB_64_THRU_32__ |