[PATCH] x86_64: fix cpu_to_node setup for sparse apic_ids
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-mips / bugs.h
blob18cced19cca430ed6a5c666ffe5008089fe847a2
1 /*
2 * This is included by init/main.c to check for architecture-dependent bugs.
4 * Needs:
5 * void check_bugs(void);
6 */
7 #ifndef _ASM_BUGS_H
8 #define _ASM_BUGS_H
10 #include <linux/config.h>
12 extern void check_bugs32(void);
13 extern void check_bugs64(void);
15 static inline void check_bugs(void)
17 check_bugs32();
18 #ifdef CONFIG_MIPS64
19 check_bugs64();
20 #endif
23 #endif /* _ASM_BUGS_H */