diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-06-10 09:17:47 -0400 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2009-06-10 23:09:11 -0400 |
commit | 4f308e35a9bde9d6b671e8409157edb9065f117c (patch) | |
tree | 0355fa1eed1a38d1d0c6c23d052085b966e68ed6 /arch | |
parent | 308e610e8c435d7875842b427dbc99de43a4aec9 (diff) |
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')
-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 @@ | |||
1 | #ifndef _M68K_SWAB_H | 1 | #ifndef _M68K_SWAB_H |
2 | #define _M68K_SWAB_H | 2 | #define _M68K_SWAB_H |
3 | 3 | ||
4 | #include <asm/types.h> | 4 | #include <linux/types.h> |
5 | #include <linux/compiler.h> | 5 | #include <linux/compiler.h> |
6 | 6 | ||
7 | #define __SWAB_64_THRU_32__ | 7 | #define __SWAB_64_THRU_32__ |