diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-11-19 05:13:38 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:18:48 -0500 |
commit | 600ee240d15e535d51e6c2b2f8475f0aa42885ea (patch) | |
tree | 95ca3ee293c43c104172debd3951c8693c27334d /arch/sh/kernel/signal_64.c | |
parent | 061854fd155116ab1f40c39a75e2c641827fd246 (diff) |
sh: Move over and enable FPU support for SH-5.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/signal_64.c')
-rw-r--r-- | arch/sh/kernel/signal_64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/kernel/signal_64.c b/arch/sh/kernel/signal_64.c index 069fb6083646..08f403e23662 100644 --- a/arch/sh/kernel/signal_64.c +++ b/arch/sh/kernel/signal_64.c | |||
@@ -211,9 +211,9 @@ setup_sigcontext_fpu(struct pt_regs *regs, struct sigcontext __user *sc) | |||
211 | return err; | 211 | return err; |
212 | 212 | ||
213 | if (current == last_task_used_math) { | 213 | if (current == last_task_used_math) { |
214 | grab_fpu(); | 214 | enable_fpu(); |
215 | fpsave(¤t->thread.fpu.hard); | 215 | fpsave(¤t->thread.fpu.hard); |
216 | release_fpu(); | 216 | disable_fpu(); |
217 | last_task_used_math = NULL; | 217 | last_task_used_math = NULL; |
218 | regs->sr |= SR_FD; | 218 | regs->sr |= SR_FD; |
219 | } | 219 | } |