Commit 0fa70efb authored by Paul Mundt's avatar Paul Mundt

sh: Correct SH-5 instruction size value.

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent d752542a
......@@ -255,8 +255,10 @@ static inline void *set_exception_table_evt(unsigned int evt, void *handler)
*/
#ifdef CONFIG_CPU_SH2A
extern unsigned int instruction_size(unsigned int insn);
#else
#elif defined(CONFIG_SUPERH32)
#define instruction_size(insn) (2)
#else
#define instruction_size(insn) (4)
#endif
/* XXX
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment