powerpc/ptrace: Remove unused addr parameter in ppc_del_hwdebug()
Signed-off-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
84295dfc59
commit
ec1b33dcd2
1 changed files with 2 additions and 2 deletions
|
@ -1451,7 +1451,7 @@ static long ppc_set_hwdebug(struct task_struct *child,
|
|||
#endif /* !CONFIG_PPC_ADV_DEBUG_DVCS */
|
||||
}
|
||||
|
||||
static long ppc_del_hwdebug(struct task_struct *child, long addr, long data)
|
||||
static long ppc_del_hwdebug(struct task_struct *child, long data)
|
||||
{
|
||||
#ifdef CONFIG_HAVE_HW_BREAKPOINT
|
||||
int ret = 0;
|
||||
|
@ -1633,7 +1633,7 @@ long arch_ptrace(struct task_struct *child, long request,
|
|||
}
|
||||
|
||||
case PPC_PTRACE_DELHWDEBUG: {
|
||||
ret = ppc_del_hwdebug(child, addr, data);
|
||||
ret = ppc_del_hwdebug(child, data);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue