1 /*
2 * This is included by init/main.c to check for architecture-dependent bugs.
3 *
4 * Needs:
5 * void check_bugs(void);
6 *
7 * Copyright (C) 1998, 1999 Hewlett-Packard Co
8 * Copyright (C) 1998, 1999 David Mosberger-Tang <davidm@hpl.hp.com>
9 */
10
11 #include <asm/processor.h>
12
13 /*
14 * I don't know of any ia-64 bugs yet..
15 */
16 static void
17 check_bugs (void)
18 {
19 }
20