diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 10:53:32 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-02-01 11:01:23 +0530 |
commit | dacd762eabf69e32f0e9181f99fd19b6f96ea5c5 (patch) | |
tree | 7bef44b3a5ff736e3dcfb370c72e510269aeeb6e /include/asm-frv | |
parent | 350eb8b3cb5e4860a4c8352f2cca00e6eb4a16b2 (diff) | |
download | linux-dacd762eabf69e32f0e9181f99fd19b6f96ea5c5.tar.bz2 |
headers_check fix: frv, swab.h
fix the following 'make headers_check' warning:
usr/include/asm-frv/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 'include/asm-frv')
-rw-r--r-- | include/asm-frv/swab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-frv/swab.h b/include/asm-frv/swab.h index afb3396ba5ed..f305834b4799 100644 --- a/include/asm-frv/swab.h +++ b/include/asm-frv/swab.h @@ -1,7 +1,7 @@ #ifndef _ASM_SWAB_H #define _ASM_SWAB_H -#include <asm/types.h> +#include <linux/types.h> #if defined(__GNUC__) && !defined(__STRICT_ANSI__) || defined(__KERNEL__) # define __SWAB_64_THRU_32__ |