diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-01-05 04:44:02 +0100 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-01-05 04:44:02 +0100 |
commit | c4761815ab49feca904776dec464046bc7138d3a (patch) | |
tree | c584c5ec79786e75423ba1b15e73ce4d6875bce2 /arch/sh/kernel/traps_32.c | |
parent | sh: Convert ptrace to hw_breakpoint API. (diff) | |
download | linux-c4761815ab49feca904776dec464046bc7138d3a.tar.xz linux-c4761815ab49feca904776dec464046bc7138d3a.zip |
sh: Fix up breakpoint trap handler patching on SH-2A.
SH-2A was referencing the old handler that no longer exists, fix it up.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/traps_32.c')
-rw-r--r-- | arch/sh/kernel/traps_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/traps_32.c b/arch/sh/kernel/traps_32.c index 86639beac3a2..706c1c18a2f2 100644 --- a/arch/sh/kernel/traps_32.c +++ b/arch/sh/kernel/traps_32.c @@ -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 */ |