diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2006-09-07 01:00:22 +0900 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-09-27 13:37:40 +0100 |
commit | 8f9a2b324644d3f8c233287f0a7764d61655cda4 (patch) | |
tree | c35f35bb0e5c4999237f4b954d6fe393985dfad8 /include/asm-mips/user.h | |
parent | d34555fb20e7abf33f86d7aa3ec0826343f38256 (diff) | |
download | talos-op-linux-8f9a2b324644d3f8c233287f0a7764d61655cda4.tar.gz talos-op-linux-8f9a2b324644d3f8c233287f0a7764d61655cda4.zip |
[MIPS] Fix errors detected by "make headers_check"
* export asm/sgidefs.h
* include asm/isadep.h only if in kernel
* do not export contents of asm/timex.h and asm/user.h
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/user.h')
-rw-r--r-- | include/asm-mips/user.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-mips/user.h b/include/asm-mips/user.h index 89bf8b4cab3c..61f2a093b91b 100644 --- a/include/asm-mips/user.h +++ b/include/asm-mips/user.h @@ -8,6 +8,8 @@ #ifndef _ASM_USER_H #define _ASM_USER_H +#ifdef __KERNEL__ + #include <asm/page.h> #include <asm/reg.h> @@ -55,4 +57,6 @@ struct user { #define HOST_DATA_START_ADDR (u.start_data) #define HOST_STACK_END_ADDR (u.start_stack + u.u_ssize * NBPG) +#endif /* __KERNEL__ */ + #endif /* _ASM_USER_H */ |