sh64: Fixup build breakage from breakpoint handler rename.
The breakpoint handler was renamed on sh32, but sh64 was overlooked in the conversion. Fix it up now. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
@@ -187,7 +187,7 @@ trap_jtable:
|
|||||||
.rept 6
|
.rept 6
|
||||||
.long do_exception_error /* 0x880 - 0x920 */
|
.long do_exception_error /* 0x880 - 0x920 */
|
||||||
.endr
|
.endr
|
||||||
.long do_software_break_point /* 0x940 */
|
.long breakpoint_trap_handler /* 0x940 */
|
||||||
.long do_exception_error /* 0x960 */
|
.long do_exception_error /* 0x960 */
|
||||||
.long do_single_step /* 0x980 */
|
.long do_single_step /* 0x980 */
|
||||||
|
|
||||||
|
@@ -478,9 +478,10 @@ asmlinkage void do_single_step(unsigned long long vec, struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Called with interrupts disabled */
|
/* Called with interrupts disabled */
|
||||||
asmlinkage void do_software_break_point(unsigned long long vec,
|
BUILD_TRAP_HANDLER(breakpoint)
|
||||||
struct pt_regs *regs)
|
|
||||||
{
|
{
|
||||||
|
TRAP_HANDLER_DECL;
|
||||||
|
|
||||||
/* We need to forward step the PC, to counteract the backstep done
|
/* We need to forward step the PC, to counteract the backstep done
|
||||||
in signal.c. */
|
in signal.c. */
|
||||||
local_irq_enable();
|
local_irq_enable();
|
||||||
|
Reference in New Issue
Block a user