diff options
Diffstat (limited to 'arch/sh/include/asm/processor.h')
-rw-r--r-- | arch/sh/include/asm/processor.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/sh/include/asm/processor.h b/arch/sh/include/asm/processor.h index 693364a20ad..1ef4b24d761 100644 --- a/arch/sh/include/asm/processor.h +++ b/arch/sh/include/asm/processor.h | |||
@@ -18,7 +18,7 @@ enum cpu_type { | |||
18 | CPU_SH7619, | 18 | CPU_SH7619, |
19 | 19 | ||
20 | /* SH-2A types */ | 20 | /* SH-2A types */ |
21 | CPU_SH7203, CPU_SH7206, CPU_SH7263, CPU_MXG, | 21 | CPU_SH7201, CPU_SH7203, CPU_SH7206, CPU_SH7263, CPU_MXG, |
22 | 22 | ||
23 | /* SH-3 types */ | 23 | /* SH-3 types */ |
24 | CPU_SH7705, CPU_SH7706, CPU_SH7707, | 24 | CPU_SH7705, CPU_SH7706, CPU_SH7707, |
@@ -82,6 +82,9 @@ extern struct sh_cpuinfo cpu_data[]; | |||
82 | #define current_cpu_data cpu_data[smp_processor_id()] | 82 | #define current_cpu_data cpu_data[smp_processor_id()] |
83 | #define raw_current_cpu_data cpu_data[raw_smp_processor_id()] | 83 | #define raw_current_cpu_data cpu_data[raw_smp_processor_id()] |
84 | 84 | ||
85 | #define cpu_sleep() __asm__ __volatile__ ("sleep" : : : "memory") | ||
86 | #define cpu_relax() barrier() | ||
87 | |||
85 | /* Forward decl */ | 88 | /* Forward decl */ |
86 | struct seq_operations; | 89 | struct seq_operations; |
87 | 90 | ||