aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2006-06-23 11:40:53 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-06-23 08:47:27 -0700
commit95eaa5fa8eb2c345244acd5f65b200b115ae8c65 (patch)
tree22e7c6949f9d930ec4f97460b9df6cf7738c1de7
parent[PATCH] s390_hypfs filesystem: get_sb_single() fix (diff)
downloadlinux-dev-95eaa5fa8eb2c345244acd5f65b200b115ae8c65.tar.xz
linux-dev-95eaa5fa8eb2c345244acd5f65b200b115ae8c65.zip
[PATCH] fix silly ARM non-EABI build error
My bad. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--arch/arm/kernel/signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/signal.c b/arch/arm/kernel/signal.c
index e9fe78033361..f094277485c8 100644
--- a/arch/arm/kernel/signal.c
+++ b/arch/arm/kernel/signal.c
@@ -687,7 +687,7 @@ static int do_signal(sigset_t *oldset, struct pt_regs *regs, int syscall)
* syscall solves that issue and works for
* all those cases.
*/
- swival = swival - __NR_SYSCAll_BASE + __NR_OABI_SYSCALL_BASE;
+ swival = swival - __NR_SYSCALL_BASE + __NR_OABI_SYSCALL_BASE;
put_user(regs->ARM_pc, &usp[0]);
/* swi __NR_restart_syscall */