diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-11-20 04:08:06 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:18:50 -0500 |
commit | 5a4f7c66be981c6b5f44a4d66a14ea6ac9b7b6b0 (patch) | |
tree | a605424a32ce11d189a1aa1385c3fc22f972449f /include/asm-sh/ptrace.h | |
parent | 811d50cb43eb730cc325df0c6913556e25739797 (diff) |
sh: Share bug/debug traps across _32 and _64.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/asm-sh/ptrace.h')
-rw-r--r-- | include/asm-sh/ptrace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-sh/ptrace.h b/include/asm-sh/ptrace.h index a83a7b45ba6f..8d6c92b3e770 100644 --- a/include/asm-sh/ptrace.h +++ b/include/asm-sh/ptrace.h | |||
@@ -95,7 +95,7 @@ struct pt_dspregs { | |||
95 | #include <asm/addrspace.h> | 95 | #include <asm/addrspace.h> |
96 | 96 | ||
97 | #define user_mode(regs) (((regs)->sr & 0x40000000)==0) | 97 | #define user_mode(regs) (((regs)->sr & 0x40000000)==0) |
98 | #define instruction_pointer(regs) ((regs)->pc) | 98 | #define instruction_pointer(regs) ((unsigned long)(regs)->pc) |
99 | 99 | ||
100 | extern void show_regs(struct pt_regs *); | 100 | extern void show_regs(struct pt_regs *); |
101 | 101 | ||