diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2008-10-25 01:17:23 +0900 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-10-27 16:18:26 +0000 |
commit | fb498e2570eedc6c9c3d165e370624dfc3aed97b (patch) | |
tree | 8792999820c2afb432f8ba79833b03be8bdba342 /arch/mips/kernel/scall32-o32.S | |
parent | bda8229bdd087167f463ad5e74299987924f8137 (diff) | |
download | op-kernel-dev-fb498e2570eedc6c9c3d165e370624dfc3aed97b.zip op-kernel-dev-fb498e2570eedc6c9c3d165e370624dfc3aed97b.tar.gz |
MIPS: Set ENOSYS to errno on illegal system call number for syscall(2)
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/scall32-o32.S')
-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 ffa23bd..759f680 100644 --- a/arch/mips/kernel/scall32-o32.S +++ b/arch/mips/kernel/scall32-o32.S @@ -293,7 +293,7 @@ bad_alignment: jr t2 /* Unreached */ -einval: li v0, -EINVAL +einval: li v0, -ENOSYS jr ra END(sys_syscall) |