2008-10-23 05:26:29 +00:00
|
|
|
#ifndef _ASM_X86_BUGS_H
|
|
|
|
#define _ASM_X86_BUGS_H
|
2007-10-15 11:57:47 +00:00
|
|
|
|
2008-01-30 12:34:10 +00:00
|
|
|
extern void check_bugs(void);
|
2008-08-05 09:45:19 +00:00
|
|
|
|
2008-09-09 23:40:37 +00:00
|
|
|
#if defined(CONFIG_CPU_SUP_INTEL) && defined(CONFIG_X86_32)
|
2008-02-04 15:48:04 +00:00
|
|
|
int ppro_with_ram_bug(void);
|
2008-08-05 09:45:19 +00:00
|
|
|
#else
|
|
|
|
static inline int ppro_with_ram_bug(void) { return 0; }
|
|
|
|
#endif
|
2007-10-15 11:57:47 +00:00
|
|
|
|
2008-10-23 05:26:29 +00:00
|
|
|
#endif /* _ASM_X86_BUGS_H */
|