|
|
| File: [Development] / linux-2.6-xfs / include / asm-mips / bugs.h (download)
Revision 1.2, Fri Oct 28 16:02:11 2005 UTC (12 years ago) by nathans.longdrop.melbourne.sgi.com
Merge up to 2.6.14 Merge of 2.6.x-xfs-melb:linux:24258a by kenmcd. |
/*
* This is included by init/main.c to check for architecture-dependent bugs.
*
* Needs:
* void check_bugs(void);
*/
#ifndef _ASM_BUGS_H
#define _ASM_BUGS_H
#include <linux/config.h>
extern void check_bugs32(void);
extern void check_bugs64(void);
static inline void check_bugs(void)
{
check_bugs32();
#ifdef CONFIG_64BIT
check_bugs64();
#endif
}
#endif /* _ASM_BUGS_H */