1353ebb4b4
Most of asm-i386/bugs.h is code which should be in a C file, so put it there. Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com> Signed-off-by: Andi Kleen <ak@suse.de> Cc: Linus Torvalds <torvalds@linux-foundation.org>
13 lines
239 B
C
13 lines
239 B
C
/*
|
|
* This is included by init/main.c to check for architecture-dependent bugs.
|
|
*
|
|
* Needs:
|
|
* void check_bugs(void);
|
|
*/
|
|
#ifndef _ASM_I386_BUG_H
|
|
#define _ASM_I386_BUG_H
|
|
|
|
extern void __init check_bugs(void);
|
|
|
|
#endif /* _ASM_I386_BUG_H */
|