aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/signal.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh/kernel/signal.c')
-rw-r--r--arch/sh/kernel/signal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/kernel/signal.c b/arch/sh/kernel/signal.c
index b32c35a7c0a3..4fc5b402b21b 100644
--- a/arch/sh/kernel/signal.c
+++ b/arch/sh/kernel/signal.c
@@ -261,14 +261,14 @@ asmlinkage int sys_rt_sigreturn(unsigned long r4, unsigned long r5,
261 goto badframe; 261 goto badframe;
262 /* It is more difficult to avoid calling this function than to 262 /* It is more difficult to avoid calling this function than to
263 call it and ignore errors. */ 263 call it and ignore errors. */
264 do_sigaltstack(&st, NULL, regs->regs[15]); 264 do_sigaltstack((const stack_t __user *)&st, NULL, (unsigned long)frame);
265 265
266 return r0; 266 return r0;
267 267
268badframe: 268badframe:
269 force_sig(SIGSEGV, current); 269 force_sig(SIGSEGV, current);
270 return 0; 270 return 0;
271} 271}
272 272
273/* 273/*
274 * Set up a signal frame. 274 * Set up a signal frame.