1 #ifndef __ASM_SH_BUGS_H
2 #define __ASM_SH_BUGS_H
5 * This is included by init/main.c to check for architecture-dependent bugs.
8 * void check_bugs(void);
12 * I don't know of any Super-H bugs yet.
15 #include <asm/processor.h>
17 static void __init
check_bugs(void)
19 extern unsigned long loops_per_jiffy
;
20 char *p
= &init_utsname()->machine
[2]; /* "sh" */
22 current_cpu_data
.loops_per_jiffy
= loops_per_jiffy
;
24 switch (current_cpu_data
.type
) {
28 case CPU_SH7203
... CPU_SH7263
:
32 case CPU_SH7705
... CPU_SH7729
:
35 case CPU_SH7750
... CPU_SH4_501
:
38 case CPU_SH7763
... CPU_SHX3
:
42 case CPU_SH7343
... CPU_SH7722
:
51 case CPU_SH5_101
... CPU_SH5_103
:
57 * Specifically use CPU_SH_NONE rather than default:,
58 * so we're able to have the compiler whine about
59 * unhandled enumerations.
64 printk("CPU: %s\n", get_cpu_subtype(¤t_cpu_data
));
66 #ifndef __LITTLE_ENDIAN__
67 /* 'eb' means 'Endian Big' */
73 #endif /* __ASM_SH_BUGS_H */