diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2014-12-12 07:11:08 -0500 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-01-08 04:02:49 -0500 |
commit | e0a50545480de0936ab867168d9bd086e56f465c (patch) | |
tree | 0b30285a5af3e2dfc47a65d507b17b469705c2f4 | |
parent | 925dfc020a41ce484172a43b603437e58aecd1c1 (diff) |
s390/signal: add sys_sigreturn and sys_rt_sigreturn declarations
Get rid of sparse warnings like this one:
arch/s390/kernel/signal.c:244:1:
warning: symbol 'sys_sigreturn' was not declared. Should it be static?
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
-rw-r--r-- | arch/s390/kernel/entry.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/s390/kernel/entry.h b/arch/s390/kernel/entry.h index 8e61393c8275..834df047d35f 100644 --- a/arch/s390/kernel/entry.h +++ b/arch/s390/kernel/entry.h | |||
@@ -71,9 +71,11 @@ struct s390_mmap_arg_struct; | |||
71 | struct fadvise64_64_args; | 71 | struct fadvise64_64_args; |
72 | struct old_sigaction; | 72 | struct old_sigaction; |
73 | 73 | ||
74 | long sys_rt_sigreturn(void); | ||
75 | long sys_sigreturn(void); | ||
76 | |||
74 | long sys_s390_personality(unsigned int personality); | 77 | long sys_s390_personality(unsigned int personality); |
75 | long sys_s390_runtime_instr(int command, int signum); | 78 | long sys_s390_runtime_instr(int command, int signum); |
76 | |||
77 | long sys_s390_pci_mmio_write(unsigned long, const void __user *, size_t); | 79 | long sys_s390_pci_mmio_write(unsigned long, const void __user *, size_t); |
78 | long sys_s390_pci_mmio_read(unsigned long, void __user *, size_t); | 80 | long sys_s390_pci_mmio_read(unsigned long, void __user *, size_t); |
79 | #endif /* _ENTRY_H */ | 81 | #endif /* _ENTRY_H */ |