summaryrefslogtreecommitdiff
path: root/arch/sh/include/asm/types.h
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2009-08-15 01:57:36 +0900
committerPaul Mundt <lethal@linux-sh.org>2009-08-15 01:57:36 +0900
commit43bc61d86f8ea6edef2e02d1dc47617883fa9a9c (patch)
tree4f7752888f2e9ca5dcfa9680edefea12aa4a6e8d /arch/sh/include/asm/types.h
parent0837f52463583f76670ab2350e0f1541cb0351f5 (diff)
sh: Add register alignment helpers for shared flushers.
This plugs in some register alignment helpers for the shared flushers, allowing them to also be used on SH-5. The main rationale here is that in the SH-5 case we have a variable ABI, where the pointer size may not equal the register width. This register extension is taken care of by the SH-5 code already today, and is otherwise unused on the SH-4 code. This combines the two and allows us to kill off the SH-5 implementation. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include/asm/types.h')
-rw-r--r--arch/sh/include/asm/types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/include/asm/types.h b/arch/sh/include/asm/types.h
index c7f3c94837dd..f8421f7ad63a 100644
--- a/arch/sh/include/asm/types.h
+++ b/arch/sh/include/asm/types.h
@@ -11,8 +11,10 @@
#ifdef CONFIG_SUPERH32
typedef u16 insn_size_t;
+typedef u32 reg_size_t;
#else
typedef u32 insn_size_t;
+typedef u64 reg_size_t;
#endif
#endif /* __ASSEMBLY__ */