Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild
[linux-block.git] / include / asm-mips / bugs.h
CommitLineData
1da177e4
LT
1/*
2 * This is included by init/main.c to check for architecture-dependent bugs.
3 *
4 * Needs:
5 * void check_bugs(void);
6 */
7#ifndef _ASM_BUGS_H
8#define _ASM_BUGS_H
9
38551576 10#include <linux/delay.h>
f03da6e2
RB
11#include <asm/cpu.h>
12#include <asm/cpu-info.h>
1da177e4
LT
13
14extern void check_bugs32(void);
15extern void check_bugs64(void);
16
17static inline void check_bugs(void)
18{
f03da6e2
RB
19 unsigned int cpu = smp_processor_id();
20
21 cpu_data[cpu].udelay_val = loops_per_jiffy;
1da177e4 22 check_bugs32();
875d43e7 23#ifdef CONFIG_64BIT
1da177e4
LT
24 check_bugs64();
25#endif
26}
27
28#endif /* _ASM_BUGS_H */