diff options
author | Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 2006-06-23 09:04:14 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 14:42:56 (GMT) |
commit | 7dbdf43cfa635ddc3701cc8d1eab07597cd731c0 (patch) | |
tree | b0f3c8bcd1be31bbb97ced989e19eaf63280da80 | |
parent | f2c780c1fdbe5008c902c2d7e37242ac5e60f0b9 (diff) | |
download | linux-fsl-qoriq-7dbdf43cfa635ddc3701cc8d1eab07597cd731c0.tar.xz |
[PATCH] mips: fix number of mremap arguments
mremap syscall takes 5 arguments. Fixed by Ralf Baechle.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | arch/mips/kernel/scall32-o32.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/scall32-o32.S b/arch/mips/kernel/scall32-o32.S index a0ac0e5..2d2fdf7 100644 --- a/arch/mips/kernel/scall32-o32.S +++ b/arch/mips/kernel/scall32-o32.S @@ -497,7 +497,7 @@ einval: li v0, -EINVAL sys sys_sched_get_priority_min 1 sys sys_sched_rr_get_interval 2 /* 4165 */ sys sys_nanosleep, 2 - sys sys_mremap, 4 + sys sys_mremap, 5 sys sys_accept 3 sys sys_bind 3 sys sys_connect 3 /* 4170 */ |