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
.family
) {
42 case CPU_FAMILY_SH4AL_DSP
:
55 case CPU_FAMILY_UNKNOWN
:
57 * Specifically use CPU_FAMILY_UNKNOWN rather than
58 * default:, so we're able to have the compiler whine
59 * about 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 */