sparc64: Fix bug in PTRACE_SETFPREGS64 handling.

From: Chris Torek <chris.torek@windriver.com>

>The SPARC64 kernel code for PTRACE_SETFPREGS64 appears to be an exact copy
>of that for PTRACE_GETFPREGS64. This means that gdbserver and native
>64-bit GDB cannot set floating-point registers.

It looks like a simple typo.

Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Chris Torek and committed by David S. Miller ee4ee527 f6f7b52e

+1 -1
+1 -1
arch/sparc64/kernel/ptrace.c
··· 1014 1014 break; 1015 1015 1016 1016 case PTRACE_SETFPREGS64: 1017 - ret = copy_regset_to_user(child, view, REGSET_FP, 1017 + ret = copy_regset_from_user(child, view, REGSET_FP, 1018 1018 0 * sizeof(u64), 1019 1019 33 * sizeof(u64), 1020 1020 fps);