diff options
Diffstat (limited to 'arch/sh64')
-rw-r--r-- | arch/sh64/kernel/ptrace.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/sh64/kernel/ptrace.c b/arch/sh64/kernel/ptrace.c index 12340e499bfb..df06c6477468 100644 --- a/arch/sh64/kernel/ptrace.c +++ b/arch/sh64/kernel/ptrace.c | |||
@@ -158,10 +158,7 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
158 | /* when I and D space are separate, this will have to be fixed. */ | 158 | /* when I and D space are separate, this will have to be fixed. */ |
159 | case PTRACE_POKETEXT: /* write the word at location addr. */ | 159 | case PTRACE_POKETEXT: /* write the word at location addr. */ |
160 | case PTRACE_POKEDATA: | 160 | case PTRACE_POKEDATA: |
161 | ret = 0; | 161 | ret = generic_ptrace_pokedata(child, addr, data); |
162 | if (access_process_vm(child, addr, &data, sizeof(data), 1) == sizeof(data)) | ||
163 | break; | ||
164 | ret = -EIO; | ||
165 | break; | 162 | break; |
166 | 163 | ||
167 | case PTRACE_POKEUSR: | 164 | case PTRACE_POKEUSR: |