diff options
author | Nicolas Pitre <nico@cam.org> | 2006-06-23 11:40:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 11:47:27 -0400 |
commit | 95eaa5fa8eb2c345244acd5f65b200b115ae8c65 (patch) | |
tree | 22e7c6949f9d930ec4f97460b9df6cf7738c1de7 /arch/arm/kernel/signal.c | |
parent | a5cf4b9a02cb9b8ac16eaafb0fcd7fd24215146e (diff) |
[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>
Diffstat (limited to 'arch/arm/kernel/signal.c')
-rw-r--r-- | arch/arm/kernel/signal.c | 2 |
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) | |||
687 | * syscall solves that issue and works for | 687 | * syscall solves that issue and works for |
688 | * all those cases. | 688 | * all those cases. |
689 | */ | 689 | */ |
690 | swival = swival - __NR_SYSCAll_BASE + __NR_OABI_SYSCALL_BASE; | 690 | swival = swival - __NR_SYSCALL_BASE + __NR_OABI_SYSCALL_BASE; |
691 | 691 | ||
692 | put_user(regs->ARM_pc, &usp[0]); | 692 | put_user(regs->ARM_pc, &usp[0]); |
693 | /* swi __NR_restart_syscall */ | 693 | /* swi __NR_restart_syscall */ |