diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-06-10 18:47:47 +0530 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2009-06-11 13:09:11 +1000 |
commit | 4f308e35a9bde9d6b671e8409157edb9065f117c (patch) | |
tree | 0355fa1eed1a38d1d0c6c23d052085b966e68ed6 /arch/m68k | |
parent | 308e610e8c435d7875842b427dbc99de43a4aec9 (diff) | |
download | blackbird-obmc-linux-4f308e35a9bde9d6b671e8409157edb9065f117c.tar.gz blackbird-obmc-linux-4f308e35a9bde9d6b671e8409157edb9065f117c.zip |
headers_check fix: m68k, swab.h
fix the following 'make headers_check' warnings:
usr/include/asm-m68k/swab.h:4: include of <linux/types.h> is preferred over <asm/types.h>
usr/include/asm-m68k/swab.h:10: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/include/asm/swab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/include/asm/swab.h b/arch/m68k/include/asm/swab.h index 9e3054ea59e9..5b754aace744 100644 --- a/arch/m68k/include/asm/swab.h +++ b/arch/m68k/include/asm/swab.h @@ -1,7 +1,7 @@ #ifndef _M68K_SWAB_H #define _M68K_SWAB_H -#include <asm/types.h> +#include <linux/types.h> #include <linux/compiler.h> #define __SWAB_64_THRU_32__ |