diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 08:06:04 +0300 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-02-01 08:31:22 +0300 |
commit | 3fd59061b7b16dd0bb7bf779ba297daa5f0bf0f5 (patch) | |
tree | 1086bd92cb617ec48d531073935a79bdc84cd334 /arch/alpha/include/asm/swab.h | |
parent | 0fc2eb3bade59365ed0b28b8ea3b5c448b2f4a26 (diff) | |
download | linux-3fd59061b7b16dd0bb7bf779ba297daa5f0bf0f5.tar.xz |
headers_check fix: alpha, swab.h
fix the following 'make headers_check' warnings:
usr/include/asm-alpha/swab.h:4: include of <linux/types.h> is preferred over <asm/types.h>
usr/include/asm-alpha/swab.h:10: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Diffstat (limited to 'arch/alpha/include/asm/swab.h')
-rw-r--r-- | arch/alpha/include/asm/swab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/alpha/include/asm/swab.h b/arch/alpha/include/asm/swab.h index 68e7089e02d5..4d682b16c7c4 100644 --- a/arch/alpha/include/asm/swab.h +++ b/arch/alpha/include/asm/swab.h @@ -1,7 +1,7 @@ #ifndef _ALPHA_SWAB_H #define _ALPHA_SWAB_H -#include <asm/types.h> +#include <linux/types.h> #include <linux/compiler.h> #include <asm/compiler.h> |