2008-06-18 17:08:48 +02:00
|
|
|
#ifndef ASM_X86__BUGS_H
|
|
|
|
#define ASM_X86__BUGS_H
|
2007-10-15 13:57:47 +02:00
|
|
|
|
2008-01-30 13:34:10 +01:00
|
|
|
extern void check_bugs(void);
|
2008-08-05 11:45:19 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_CPU_SUP_INTEL_32
|
2008-02-04 16:48:04 +01:00
|
|
|
int ppro_with_ram_bug(void);
|
2008-08-05 11:45:19 +02:00
|
|
|
#else
|
|
|
|
static inline int ppro_with_ram_bug(void) { return 0; }
|
|
|
|
#endif
|
2007-10-15 13:57:47 +02:00
|
|
|
|
2008-06-18 17:08:48 +02:00
|
|
|
#endif /* ASM_X86__BUGS_H */
|