diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-10-13 17:23:53 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-11-09 00:16:29 -0500 |
commit | ce3959604878c1c693979ec552069dc8bdb5ccde (patch) | |
tree | 8f7250df92eacb55747fc8bce69f0c92e8940086 /arch/sparc | |
parent | 078d8e624c1837aa8ad65e58054a4a40d7ac46d2 (diff) |
constify copy_siginfo_to_user{,32}()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/sparc')
-rw-r--r-- | arch/sparc/kernel/signal32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/signal32.c b/arch/sparc/kernel/signal32.c index b524f91dd0e5..ee789d2ef05d 100644 --- a/arch/sparc/kernel/signal32.c +++ b/arch/sparc/kernel/signal32.c | |||
@@ -68,7 +68,7 @@ struct rt_signal_frame32 { | |||
68 | /* __siginfo_rwin_t * */u32 rwin_save; | 68 | /* __siginfo_rwin_t * */u32 rwin_save; |
69 | } __attribute__((aligned(8))); | 69 | } __attribute__((aligned(8))); |
70 | 70 | ||
71 | int copy_siginfo_to_user32(compat_siginfo_t __user *to, siginfo_t *from) | 71 | int copy_siginfo_to_user32(compat_siginfo_t __user *to, const siginfo_t *from) |
72 | { | 72 | { |
73 | int err; | 73 | int err; |
74 | 74 | ||