From: David Daney Date: Fri, 31 Oct 2008 18:23:09 +0000 (-0700) Subject: MIPS: Return ENOSYS from sys32_syscall on 64bit kernels like elsewhere. X-Git-Url: http://git.maemo.org/git/?a=commitdiff_plain;h=c6cb4df96fa22d1174d6fb6dfc2c7501d7afaeea;p=h-e-n MIPS: Return ENOSYS from sys32_syscall on 64bit kernels like elsewhere. When the o32 errno was changed to ENOSYS, we forgot to update the code for 64bit kernels. Signed-off-by: David Daney Acked-by: Atsushi Nemoto Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/kernel/scall64-o32.S b/arch/mips/kernel/scall64-o32.S index 3d55e3b..fefef4a 100644 --- a/arch/mips/kernel/scall64-o32.S +++ b/arch/mips/kernel/scall64-o32.S @@ -196,7 +196,7 @@ LEAF(sys32_syscall) jr t2 /* Unreached */ -einval: li v0, -EINVAL +einval: li v0, -ENOSYS jr ra END(sys32_syscall)