diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-02-08 13:38:18 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-02-08 17:52:25 +0000 |
commit | 40ac5d479b7deb98f6ccc4a7a29ee62dba7a798f (patch) | |
tree | a73e16545a2653c5737526f44e77752425d27430 /arch/mips/kernel/process.c | |
parent | 7b3e2fc847c8325a7b35185fa1fc2f1729ed9c5b (diff) | |
download | blackbird-op-linux-40ac5d479b7deb98f6ccc4a7a29ee62dba7a798f.tar.gz blackbird-op-linux-40ac5d479b7deb98f6ccc4a7a29ee62dba7a798f.zip |
[MIPS] Make do_signal return void.
It's return value is ignored everywhere.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
---
Diffstat (limited to 'arch/mips/kernel/process.c')
-rw-r--r-- | arch/mips/kernel/process.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/mips/kernel/process.c b/arch/mips/kernel/process.c index 02adc7384153..5232fc752935 100644 --- a/arch/mips/kernel/process.c +++ b/arch/mips/kernel/process.c @@ -4,6 +4,7 @@ * for more details. * * Copyright (C) 1994 - 1999, 2000 by Ralf Baechle and others. + * Copyright (C) 2005, 2006 by Ralf Baechle (ralf@linux-mips.org) * Copyright (C) 1999, 2000 Silicon Graphics, Inc. * Copyright (C) 2004 Thiemo Seufer */ @@ -58,8 +59,8 @@ ATTRIB_NORET void cpu_idle(void) } } -extern int do_signal(struct pt_regs *regs); -extern int do_signal32(struct pt_regs *regs); +extern void do_signal(struct pt_regs *regs); +extern void do_signal32(struct pt_regs *regs); /* * Native o32 and N64 ABI without DSP ASE |