diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 10:46:26 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-02-01 11:01:23 +0530 |
commit | 1c6ce704f1e965f64ad0b017842854ceec5b9cc7 (patch) | |
tree | 3ba44530c10464a08ba25dfdb7626488a160aae7 /arch/avr32/include/asm | |
parent | e42ec2418fa96f98ed8d4e6d8a572a7200156df6 (diff) | |
download | op-kernel-dev-1c6ce704f1e965f64ad0b017842854ceec5b9cc7.zip op-kernel-dev-1c6ce704f1e965f64ad0b017842854ceec5b9cc7.tar.gz |
headers_check fix: avr32, swab.h
fix the following 'make headers_check' warnings:
usr/include/asm-avr32/swab.h:7: include of <linux/types.h> is preferred over <asm/types.h>
usr/include/asm-avr32/swab.h:22: 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/avr32/include/asm')
-rw-r--r-- | arch/avr32/include/asm/swab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/avr32/include/asm/swab.h b/arch/avr32/include/asm/swab.h index a14aa5b..14cc737 100644 --- a/arch/avr32/include/asm/swab.h +++ b/arch/avr32/include/asm/swab.h @@ -4,7 +4,7 @@ #ifndef __ASM_AVR32_SWAB_H #define __ASM_AVR32_SWAB_H -#include <asm/types.h> +#include <linux/types.h> #include <linux/compiler.h> #define __SWAB_64_THRU_32__ |