diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 06:22:05 (GMT) |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-02-01 05:31:29 (GMT) |
commit | 1a16bc4590fcc94630571c541c8fef7a0845c2c0 (patch) | |
tree | dc35200d932f1fff1a23409421b7053388ae0b80 /arch/powerpc/include | |
parent | 122bb2207b8107ce117d10fcfd3a2f6c3804a362 (diff) | |
download | linux-1a16bc4590fcc94630571c541c8fef7a0845c2c0.tar.xz |
headers_check fix: powerpc, spu_info.h
fix the following 'make headers_check' warning:
usr/include/asm-powerpc/spu_info.h:27: 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/powerpc/include')
-rw-r--r-- | arch/powerpc/include/asm/spu_info.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/spu_info.h b/arch/powerpc/include/asm/spu_info.h index 3545efb..1286c82 100644 --- a/arch/powerpc/include/asm/spu_info.h +++ b/arch/powerpc/include/asm/spu_info.h @@ -23,9 +23,10 @@ #ifndef _SPU_INFO_H #define _SPU_INFO_H +#include <linux/types.h> + #ifdef __KERNEL__ #include <asm/spu.h> -#include <linux/types.h> #else struct mfc_cq_sr { __u64 mfc_cq_data0_RW; |