diff options
Diffstat (limited to 'arch/sparc/kernel/kgdb_64.c')
-rw-r--r-- | arch/sparc/kernel/kgdb_64.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/sparc/kernel/kgdb_64.c b/arch/sparc/kernel/kgdb_64.c index 0a2bd0f99fc1..768290a6c028 100644 --- a/arch/sparc/kernel/kgdb_64.c +++ b/arch/sparc/kernel/kgdb_64.c | |||
@@ -181,6 +181,12 @@ void kgdb_arch_exit(void) | |||
181 | { | 181 | { |
182 | } | 182 | } |
183 | 183 | ||
184 | void kgdb_arch_set_pc(struct pt_regs *regs, unsigned long ip) | ||
185 | { | ||
186 | regs->tpc = ip; | ||
187 | regs->tnpc = regs->tpc + 4; | ||
188 | } | ||
189 | |||
184 | struct kgdb_arch arch_kgdb_ops = { | 190 | struct kgdb_arch arch_kgdb_ops = { |
185 | /* Breakpoint instruction: ta 0x72 */ | 191 | /* Breakpoint instruction: ta 0x72 */ |
186 | .gdb_bpt_instr = { 0x91, 0xd0, 0x20, 0x72 }, | 192 | .gdb_bpt_instr = { 0x91, 0xd0, 0x20, 0x72 }, |