summaryrefslogtreecommitdiffstats
path: root/include/asm-sh64/ptrace.h
diff options
context:
space:
mode:
authorPaul Mundt2006-09-12 07:36:46 +0200
committerPaul Mundt2006-09-12 07:36:46 +0200
commit21264136ce7c3c7032c42e7c2440f5d89039ca5a (patch)
tree99f0552df91c45c41fba68caad7cff270b54beda /include/asm-sh64/ptrace.h
parentsh64: Drop deprecated ISA tuning for legacy toolchains. (diff)
downloadkernel-qcow2-linux-21264136ce7c3c7032c42e7c2440f5d89039ca5a.tar.gz
kernel-qcow2-linux-21264136ce7c3c7032c42e7c2440f5d89039ca5a.tar.xz
kernel-qcow2-linux-21264136ce7c3c7032c42e7c2440f5d89039ca5a.zip
sh64: Trivial build fixes.
While we've been sorting out the toolchain fiasco, some of the code has suffered a bit of bitrot. Building with GCC4 also brings up some more build warnings. Trivial fixes for both issues. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/asm-sh64/ptrace.h')
-rw-r--r--include/asm-sh64/ptrace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-sh64/ptrace.h b/include/asm-sh64/ptrace.h
index 56190f521587..a6d4da519db6 100644
--- a/include/asm-sh64/ptrace.h
+++ b/include/asm-sh64/ptrace.h
@@ -28,7 +28,7 @@ struct pt_regs {
#ifdef __KERNEL__
#define user_mode(regs) (((regs)->sr & 0x40000000)==0)
#define instruction_pointer(regs) ((regs)->pc)
-#define profile_pc(regs) instruction_pointer(regs)
+#define profile_pc(regs) ((unsigned long)instruction_pointer(regs))
extern void show_regs(struct pt_regs *);
#endif