.. | .. |
---|
39 | 39 | /* SH4AL-DSP types */ |
---|
40 | 40 | CPU_SH7343, CPU_SH7722, CPU_SH7366, CPU_SH7372, |
---|
41 | 41 | |
---|
42 | | - /* SH-5 types */ |
---|
43 | | - CPU_SH5_101, CPU_SH5_103, |
---|
44 | | - |
---|
45 | 42 | /* Unknown subtype */ |
---|
46 | 43 | CPU_SH_NONE |
---|
47 | 44 | }; |
---|
.. | .. |
---|
53 | 50 | CPU_FAMILY_SH4, |
---|
54 | 51 | CPU_FAMILY_SH4A, |
---|
55 | 52 | CPU_FAMILY_SH4AL_DSP, |
---|
56 | | - CPU_FAMILY_SH5, |
---|
57 | 53 | CPU_FAMILY_UNKNOWN, |
---|
58 | 54 | }; |
---|
59 | 55 | |
---|
.. | .. |
---|
167 | 163 | */ |
---|
168 | 164 | #ifdef CONFIG_CPU_SH2A |
---|
169 | 165 | extern unsigned int instruction_size(unsigned int insn); |
---|
170 | | -#elif defined(CONFIG_SUPERH32) |
---|
171 | | -#define instruction_size(insn) (2) |
---|
172 | 166 | #else |
---|
173 | | -#define instruction_size(insn) (4) |
---|
| 167 | +#define instruction_size(insn) (2) |
---|
174 | 168 | #endif |
---|
175 | 169 | |
---|
176 | 170 | #endif /* __ASSEMBLY__ */ |
---|
177 | 171 | |
---|
178 | | -#ifdef CONFIG_SUPERH32 |
---|
179 | | -# include <asm/processor_32.h> |
---|
180 | | -#else |
---|
181 | | -# include <asm/processor_64.h> |
---|
182 | | -#endif |
---|
| 172 | +#include <asm/processor_32.h> |
---|
183 | 173 | |
---|
184 | 174 | #endif /* __ASM_SH_PROCESSOR_H */ |
---|