diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 11:12:29 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-02-01 11:01:25 +0530 |
commit | 040c92b8e5f080e1f5a610bf0e10c683328dce75 (patch) | |
tree | 23a7ce8a211bf59372a9d35911d75e641e0ade16 | |
parent | 6ce795065bdd2bfeebd97fa91a95918dcff7d0ec (diff) | |
download | linux-stable-040c92b8e5f080e1f5a610bf0e10c683328dce75.tar.gz linux-stable-040c92b8e5f080e1f5a610bf0e10c683328dce75.tar.bz2 linux-stable-040c92b8e5f080e1f5a610bf0e10c683328dce75.zip |
headers_check fix: ia64, swab.h
fix the following 'make headers_check' warnings:
usr/include/asm-ia64/swab.h:9: include of <linux/types.h> is preferred over <asm/types.h>
usr/include/asm-ia64/swab.h:13: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
-rw-r--r-- | arch/ia64/include/asm/swab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/include/asm/swab.h b/arch/ia64/include/asm/swab.h index 6aa58b699eea..c89a8cb5d8a5 100644 --- a/arch/ia64/include/asm/swab.h +++ b/arch/ia64/include/asm/swab.h @@ -6,7 +6,7 @@ * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co. */ -#include <asm/types.h> +#include <linux/types.h> #include <asm/intrinsics.h> #include <linux/compiler.h> |