diff options
Diffstat (limited to 'arch/powerpc/kernel/hw_breakpoint.c')
| -rw-r--r-- | arch/powerpc/kernel/hw_breakpoint.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/powerpc/kernel/hw_breakpoint.c b/arch/powerpc/kernel/hw_breakpoint.c index 91a3be14808b..2669f80b3a49 100644 --- a/arch/powerpc/kernel/hw_breakpoint.c +++ b/arch/powerpc/kernel/hw_breakpoint.c @@ -523,7 +523,7 @@ static void larx_stcx_err(struct perf_event *bp, struct arch_hw_breakpoint *info  static bool stepping_handler(struct pt_regs *regs, struct perf_event **bp,  			     struct arch_hw_breakpoint **info, int *hit, -			     struct ppc_inst instr) +			     ppc_inst_t instr)  {  	int i;  	int stepped; @@ -616,7 +616,7 @@ int hw_breakpoint_handler(struct die_args *args)  	int hit[HBP_NUM_MAX] = {0};  	int nr_hit = 0;  	bool ptrace_bp = false; -	struct ppc_inst instr = ppc_inst(0); +	ppc_inst_t instr = ppc_inst(0);  	int type = 0;  	int size = 0;  	unsigned long ea; |