blob: 45a92bbb352272ed860aa101e57377a6a8371721 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
*
* Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
*
* Module name: walnut.h
*
* Description:
* Macros, definitions, and data structures specific to the IBM PowerPC
* 405GP "Walnut" evaluation board. Anything specific to the processor
* itself is defined elsewhere.
*
*/
#ifdef __KERNEL__
#ifndef __WALNUT_H__
#define __WALNUT_H__
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif /* __WALNUT_H__ */
#endif /* __KERNEL__ */
|