1 /*
2 *
3 * Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
4 *
5 * Module name: board.h
6 *
7 * Description:
8 * A generic include file which pulls in appropriate include files
9 * for specific board types based on configuration settings.
10 *
11 */
12
13 #ifdef __KERNEL__
14 #ifndef __BOARD_H__
15 #define __BOARD_H__
16
17 #include <linux/config.h>
18
19 #if defined(CONFIG_OAK)
20 #include <asm/oak.h>
21 #endif
22
23 #if defined(CONFIG_WALNUT)
24 #include <asm/walnut.h>
25 #endif
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 /*
32 * The "residual" board information structure the boot loader passes
33 * into the kernel.
34 */
35
36 extern unsigned char __res[];
37
38
39 #ifdef __cplusplus
40 }
41 #endif
42
43 #endif /* __BOARD_H__ */
44 #endif /* __KERNEL__ */
45
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.