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 extern void select_idle_routine(void);
19 static void __init
check_bugs(void)
21 extern unsigned long loops_per_jiffy
;
22 char *p
= &init_utsname()->machine
[2]; /* "sh" */
24 select_idle_routine();
26 current_cpu_data
.loops_per_jiffy
= loops_per_jiffy
;
28 switch (current_cpu_data
.family
) {
46 case CPU_FAMILY_SH4AL_DSP
:
59 case CPU_FAMILY_UNKNOWN
:
61 * Specifically use CPU_FAMILY_UNKNOWN rather than
62 * default:, so we're able to have the compiler whine
63 * about unhandled enumerations.
68 printk("CPU: %s\n", get_cpu_subtype(¤t_cpu_data
));
70 #ifndef __LITTLE_ENDIAN__
71 /* 'eb' means 'Endian Big' */
77 #endif /* __ASM_SH_BUGS_H */