Commit 40ac5d47 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Make do_signal return void.

    
It's return value is ignored everywhere.
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>

---
parent 7b3e2fc8
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
* for more details. * for more details.
* *
* Copyright (C) 1994 - 1999, 2000 by Ralf Baechle and others. * 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) 1999, 2000 Silicon Graphics, Inc.
* Copyright (C) 2004 Thiemo Seufer * Copyright (C) 2004 Thiemo Seufer
*/ */
...@@ -58,8 +59,8 @@ ATTRIB_NORET void cpu_idle(void) ...@@ -58,8 +59,8 @@ ATTRIB_NORET void cpu_idle(void)
} }
} }
extern int do_signal(struct pt_regs *regs); extern void do_signal(struct pt_regs *regs);
extern int do_signal32(struct pt_regs *regs); extern void do_signal32(struct pt_regs *regs);
/* /*
* Native o32 and N64 ABI without DSP ASE * Native o32 and N64 ABI without DSP ASE
......
...@@ -410,7 +410,7 @@ static inline int handle_signal(unsigned long sig, siginfo_t *info, ...@@ -410,7 +410,7 @@ static inline int handle_signal(unsigned long sig, siginfo_t *info,
return ret; return ret;
} }
int do_signal(struct pt_regs *regs) void do_signal(struct pt_regs *regs)
{ {
struct k_sigaction ka; struct k_sigaction ka;
sigset_t *oldset; sigset_t *oldset;
...@@ -423,7 +423,7 @@ int do_signal(struct pt_regs *regs) ...@@ -423,7 +423,7 @@ int do_signal(struct pt_regs *regs)
* if so. * if so.
*/ */
if (!user_mode(regs)) if (!user_mode(regs))
return 1; return;
if (try_to_freeze()) if (try_to_freeze())
goto no_signal; goto no_signal;
...@@ -477,8 +477,6 @@ int do_signal(struct pt_regs *regs) ...@@ -477,8 +477,6 @@ int do_signal(struct pt_regs *regs)
clear_thread_flag(TIF_RESTORE_SIGMASK); clear_thread_flag(TIF_RESTORE_SIGMASK);
sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL); sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
} }
return 0;
} }
/* /*
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#include <asm/siginfo.h> #include <asm/siginfo.h>
struct mips_abi { struct mips_abi {
int (* const do_signal)(struct pt_regs *regs); void (* const do_signal)(struct pt_regs *regs);
int (* const setup_frame)(struct k_sigaction * ka, int (* const setup_frame)(struct k_sigaction * ka,
struct pt_regs *regs, int signr, struct pt_regs *regs, int signr,
sigset_t *set); sigset_t *set);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment