diff options
Diffstat (limited to 'arch/sh/kernel/process_64.c')
-rw-r--r-- | arch/sh/kernel/process_64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/kernel/process_64.c b/arch/sh/kernel/process_64.c index 359b8a2f4d2e..31f80c61b031 100644 --- a/arch/sh/kernel/process_64.c +++ b/arch/sh/kernel/process_64.c | |||
@@ -404,7 +404,7 @@ int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu) | |||
404 | if (fpvalid) { | 404 | if (fpvalid) { |
405 | if (current == last_task_used_math) { | 405 | if (current == last_task_used_math) { |
406 | enable_fpu(); | 406 | enable_fpu(); |
407 | save_fpu(tsk, regs); | 407 | save_fpu(tsk); |
408 | disable_fpu(); | 408 | disable_fpu(); |
409 | last_task_used_math = 0; | 409 | last_task_used_math = 0; |
410 | regs->sr |= SR_FD; | 410 | regs->sr |= SR_FD; |
@@ -431,7 +431,7 @@ int copy_thread(unsigned long clone_flags, unsigned long usp, | |||
431 | #ifdef CONFIG_SH_FPU | 431 | #ifdef CONFIG_SH_FPU |
432 | if(last_task_used_math == current) { | 432 | if(last_task_used_math == current) { |
433 | enable_fpu(); | 433 | enable_fpu(); |
434 | save_fpu(current, regs); | 434 | save_fpu(current); |
435 | disable_fpu(); | 435 | disable_fpu(); |
436 | last_task_used_math = NULL; | 436 | last_task_used_math = NULL; |
437 | regs->sr |= SR_FD; | 437 | regs->sr |= SR_FD; |