diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-01-19 07:40:03 +0100 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-01-19 07:40:03 +0100 |
commit | 3ef2932b8c1fc89408ef1fd4b1e1c2caabc7f07d (patch) | |
tree | 0b12eea51d98e1edd1ef891ed7fe0a7feec4341c /arch/sh/kernel/process_64.c | |
parent | sh: Kill off now bogus fixmap/page wiring documentation. (diff) | |
download | linux-3ef2932b8c1fc89408ef1fd4b1e1c2caabc7f07d.tar.xz linux-3ef2932b8c1fc89408ef1fd4b1e1c2caabc7f07d.zip |
sh64: Fix up the build for the thread_xstate changes.
This updates the sh64 processor info with the sh32 changes in order to
tie in to the generic task_xstate management code.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/process_64.c')
-rw-r--r-- | arch/sh/kernel/process_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/process_64.c b/arch/sh/kernel/process_64.c index 31f80c61b031..c9554a70bd0e 100644 --- a/arch/sh/kernel/process_64.c +++ b/arch/sh/kernel/process_64.c @@ -410,7 +410,7 @@ int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu) regs->sr |= SR_FD; } - memcpy(fpu, &tsk->thread.fpu.hard, sizeof(*fpu)); + memcpy(fpu, &tsk->thread.xstate->hardfpu, sizeof(*fpu)); } return fpvalid; |