diff options
Diffstat (limited to 'include/asm-sh/processor.h')
-rw-r--r-- | include/asm-sh/processor.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/asm-sh/processor.h b/include/asm-sh/processor.h index bdd472705546..b7cba4e91a72 100644 --- a/include/asm-sh/processor.h +++ b/include/asm-sh/processor.h | |||
@@ -54,14 +54,15 @@ enum cpu_type { | |||
54 | }; | 54 | }; |
55 | 55 | ||
56 | struct sh_cpuinfo { | 56 | struct sh_cpuinfo { |
57 | enum cpu_type type; | 57 | unsigned int type; |
58 | unsigned long loops_per_jiffy; | 58 | unsigned long loops_per_jiffy; |
59 | 59 | ||
60 | struct cache_info icache; | 60 | struct cache_info icache; /* Primary I-cache */ |
61 | struct cache_info dcache; | 61 | struct cache_info dcache; /* Primary D-cache */ |
62 | struct cache_info scache; /* Secondary cache */ | ||
62 | 63 | ||
63 | unsigned long flags; | 64 | unsigned long flags; |
64 | }; | 65 | } __attribute__ ((aligned(SMP_CACHE_BYTES))); |
65 | 66 | ||
66 | extern struct sh_cpuinfo boot_cpu_data; | 67 | extern struct sh_cpuinfo boot_cpu_data; |
67 | 68 | ||