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