diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 11:29:28 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-02-01 11:01:27 +0530 |
commit | bef53ca086e069a3fb8e6bf4ecf06221de9b445f (patch) | |
tree | 8af4a2c5e5c088809b9dbd828f1cbbc0bef1d774 /include/asm-mn10300 | |
parent | a9f6acc5ab36c7533c9b3e224f7c209d8da4048d (diff) | |
download | linux-3.10-bef53ca086e069a3fb8e6bf4ecf06221de9b445f.tar.gz linux-3.10-bef53ca086e069a3fb8e6bf4ecf06221de9b445f.tar.bz2 linux-3.10-bef53ca086e069a3fb8e6bf4ecf06221de9b445f.zip |
headers_check fix: mn10300, swab.h
fix the following 'make headers_check' warnings:
usr/include/asm-mn10300/swab.h:14: include of <linux/types.h> is preferred over <asm/types.h>
usr/include/asm-mn10300/swab.h:19: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Diffstat (limited to 'include/asm-mn10300')
-rw-r--r-- | include/asm-mn10300/swab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mn10300/swab.h b/include/asm-mn10300/swab.h index 4504d1b4b47..bd818a820ca 100644 --- a/include/asm-mn10300/swab.h +++ b/include/asm-mn10300/swab.h @@ -11,7 +11,7 @@ #ifndef _ASM_SWAB_H #define _ASM_SWAB_H -#include <asm/types.h> +#include <linux/types.h> #ifdef __GNUC__ |