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