diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 06:25:12 +0100 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-02-01 06:31:24 +0100 |
commit | 295803eea178d777cf3813b16696c54b0b2bcd23 (patch) | |
tree | 9900b6e26214fdbb2649a11f04ce13109a5327e3 /arch/h8300 | |
parent | headers_check fix: frv, swab.h (diff) | |
download | linux-295803eea178d777cf3813b16696c54b0b2bcd23.tar.xz linux-295803eea178d777cf3813b16696c54b0b2bcd23.zip |
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 c108f39b8bc4..39abbf52807d 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__ |