diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-11-05 13:06:22 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-11-29 00:01:24 -0500 |
commit | b7f9591c44505ee16ed4561cfeb3642798bdd132 (patch) | |
tree | d7e0ac4a0f36440fffe487c71130a844df566878 /arch/m68k/include | |
parent | 22062a96300dabfef93368a28c34bdf35c9b8308 (diff) | |
download | blackbird-obmc-linux-b7f9591c44505ee16ed4561cfeb3642798bdd132.tar.gz blackbird-obmc-linux-b7f9591c44505ee16ed4561cfeb3642798bdd132.zip |
get rid of ptrace_signal_deliver() arguments
the first one is equal to signal_pt_regs(), the second is never used
(and always NULL, while we are at it).
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/m68k/include')
-rw-r--r-- | arch/m68k/include/asm/signal.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/m68k/include/asm/signal.h b/arch/m68k/include/asm/signal.h index eb51a5241187..9c8c46b06b0c 100644 --- a/arch/m68k/include/asm/signal.h +++ b/arch/m68k/include/asm/signal.h @@ -87,8 +87,7 @@ static inline int sigfindinword(unsigned long word) #endif /* !CONFIG_CPU_HAS_NO_BITFIELDS */ #ifndef __uClinux__ -struct pt_regs; -extern void ptrace_signal_deliver(struct pt_regs *regs, void *cookie); +extern void ptrace_signal_deliver(void); #define ptrace_signal_deliver ptrace_signal_deliver #endif /* __uClinux__ */ |