Skip to content

Commit

Permalink
sh: Fix up breakpoint trap handler patching on SH-2A.
Browse files Browse the repository at this point in the history
SH-2A was referencing the old handler that no longer exists, fix it up.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Paul Mundt committed Jan 5, 2010
1 parent 34d0b5a commit c476181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/sh/kernel/traps_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ void __init trap_init(void)
#endif

#ifdef TRAP_UBC
set_exception_table_vec(TRAP_UBC, break_point_trap);
set_exception_table_vec(TRAP_UBC, breakpoint_trap_handler);
#endif

/* Setup VBR for boot cpu */
Expand Down

0 comments on commit c476181

Please sign in to comment.