diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-11-08 19:08:28 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-28 13:18:40 +0900 |
commit | 0fa70efbd45a6c4fd946fa71c0a609f2c509d07c (patch) | |
tree | ef4992b4c0f0e8e03b2d6bbe2346fff087668b99 /include/asm-sh/system.h | |
parent | d752542ade337f059d12c59c4bc9c312befa1f1e (diff) |
sh: Correct SH-5 instruction size value.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/asm-sh/system.h')
-rw-r--r-- | include/asm-sh/system.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-sh/system.h b/include/asm-sh/system.h index 4faa2fb8861..288abeb5476 100644 --- a/include/asm-sh/system.h +++ b/include/asm-sh/system.h @@ -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 |