diff options
author | Len Brown <len.brown@intel.com> | 2005-12-06 17:31:30 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-12-06 17:31:30 -0500 |
commit | 3d5271f9883cba7b54762bc4fe027d4172f06db7 (patch) | |
tree | ab8a881a14478598a0c8bda0d26c62cdccfffd6d /include/asm-mips/bugs.h | |
parent | 378b2556f4e09fa6f87ff0cb5c4395ff28257d02 (diff) | |
parent | 9115a6c787596e687df03010d97fccc5e0762506 (diff) |
Pull release into acpica branch
Diffstat (limited to 'include/asm-mips/bugs.h')
-rw-r--r-- | include/asm-mips/bugs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asm-mips/bugs.h b/include/asm-mips/bugs.h index b14b961c2100..cb2ea7c15c7a 100644 --- a/include/asm-mips/bugs.h +++ b/include/asm-mips/bugs.h | |||
@@ -8,12 +8,18 @@ | |||
8 | #define _ASM_BUGS_H | 8 | #define _ASM_BUGS_H |
9 | 9 | ||
10 | #include <linux/config.h> | 10 | #include <linux/config.h> |
11 | #include <linux/delay.h> | ||
12 | #include <asm/cpu.h> | ||
13 | #include <asm/cpu-info.h> | ||
11 | 14 | ||
12 | extern void check_bugs32(void); | 15 | extern void check_bugs32(void); |
13 | extern void check_bugs64(void); | 16 | extern void check_bugs64(void); |
14 | 17 | ||
15 | static inline void check_bugs(void) | 18 | static inline void check_bugs(void) |
16 | { | 19 | { |
20 | unsigned int cpu = smp_processor_id(); | ||
21 | |||
22 | cpu_data[cpu].udelay_val = loops_per_jiffy; | ||
17 | check_bugs32(); | 23 | check_bugs32(); |
18 | #ifdef CONFIG_64BIT | 24 | #ifdef CONFIG_64BIT |
19 | check_bugs64(); | 25 | check_bugs64(); |