diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 11:22:18 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-02-01 11:01:26 +0530 |
commit | ae612fb05b0f60ff58e2a86eea46dc99532d62c5 (patch) | |
tree | 591071f9c410ef3cc5f5f6aa2f38045cf336a701 /arch/mips | |
parent | d8cbec15af88e067f33cb78efad15d581fa79b12 (diff) | |
download | op-kernel-dev-ae612fb05b0f60ff58e2a86eea46dc99532d62c5.zip op-kernel-dev-ae612fb05b0f60ff58e2a86eea46dc99532d62c5.tar.gz |
headers_check fix: mips, sigcontext.h
fix the following 'make headers_check' warning:
usr/include/asm-mips/sigcontext.h:57: 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/mips')
-rw-r--r-- | arch/mips/include/asm/sigcontext.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/include/asm/sigcontext.h b/arch/mips/include/asm/sigcontext.h index 9ce0607..9e89cf9 100644 --- a/arch/mips/include/asm/sigcontext.h +++ b/arch/mips/include/asm/sigcontext.h @@ -9,6 +9,7 @@ #ifndef _ASM_SIGCONTEXT_H #define _ASM_SIGCONTEXT_H +#include <linux/types.h> #include <asm/sgidefs.h> #if _MIPS_SIM == _MIPS_SIM_ABI32 |