diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2006-02-21 16:05:11 +0900 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-03-21 13:27:46 +0000 |
commit | 219ac73a7ad17a3ae3d5c07b4fc8c280645a073a (patch) | |
tree | debe814488e9e36ac0870f2c97af23d229a2570e /include/asm-mips | |
parent | b1bcb362d921f5e46a3bec0c7a73c32abfe74db2 (diff) | |
download | blackbird-obmc-linux-219ac73a7ad17a3ae3d5c07b4fc8c280645a073a.tar.gz blackbird-obmc-linux-219ac73a7ad17a3ae3d5c07b4fc8c280645a073a.zip |
[MIPS] Further sparsification for 32-bit compat code.
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')
-rw-r--r-- | include/asm-mips/compat.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-mips/compat.h b/include/asm-mips/compat.h index 35d2604fe69c..0012bd804d2d 100644 --- a/include/asm-mips/compat.h +++ b/include/asm-mips/compat.h @@ -128,17 +128,17 @@ typedef u32 compat_sigset_word; */ typedef u32 compat_uptr_t; -static inline void *compat_ptr(compat_uptr_t uptr) +static inline void __user *compat_ptr(compat_uptr_t uptr) { - return (void *)(long)uptr; + return (void __user *)(long)uptr; } -static inline void *compat_alloc_user_space(long len) +static inline void __user *compat_alloc_user_space(long len) { struct pt_regs *regs = (struct pt_regs *) ((unsigned long) current_thread_info() + THREAD_SIZE - 32) - 1; - return (void *) (regs->regs[29] - len); + return (void __user *) (regs->regs[29] - len); } #if defined (__MIPSEL__) #define __COMPAT_ENDIAN_SWAP__ 1 |