diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2006-02-21 02:05:11 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-03-21 08:27:46 -0500 |
commit | 219ac73a7ad17a3ae3d5c07b4fc8c280645a073a (patch) | |
tree | debe814488e9e36ac0870f2c97af23d229a2570e /arch/mips/kernel/syscall.c | |
parent | b1bcb362d921f5e46a3bec0c7a73c32abfe74db2 (diff) |
[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 'arch/mips/kernel/syscall.c')
-rw-r--r-- | arch/mips/kernel/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/syscall.c b/arch/mips/kernel/syscall.c index 1da2eeb3ef9e..55f2bc09529c 100644 --- a/arch/mips/kernel/syscall.c +++ b/arch/mips/kernel/syscall.c | |||
@@ -345,7 +345,7 @@ asmlinkage int sys_ipc (uint call, int first, int second, | |||
345 | union semun fourth; | 345 | union semun fourth; |
346 | if (!ptr) | 346 | if (!ptr) |
347 | return -EINVAL; | 347 | return -EINVAL; |
348 | if (get_user(fourth.__pad, (void *__user *) ptr)) | 348 | if (get_user(fourth.__pad, (void __user *__user *) ptr)) |
349 | return -EFAULT; | 349 | return -EFAULT; |
350 | return sys_semctl (first, second, third, fourth); | 350 | return sys_semctl (first, second, third, fourth); |
351 | } | 351 | } |