Indentation fix, cleanup.
[AROS.git] / arch / ppc-chrp / efika / bestcomm / bestcomm_private.h
blob391dc8cc667b29e714a4fd2dc7dd3d448d3733b9
1 /*
2 * bestcomm_private.h
4 * Created on: Mar 15, 2009
5 * Author: misc
6 */
8 #ifndef BESTCOMM_PRIVATE_H_
9 #define BESTCOMM_PRIVATE_H_
11 #include <exec/nodes.h>
12 #include <asm/mpc5200b.h>
13 #include <inttypes.h>
15 struct BestCommBase {
16 struct Node bc_Node;
17 bestcomm_t *bc_BestComm;
18 uint8_t *bc_SRAM;
19 uint32_t *bc_SRAMFree;
20 uint32_t bc_SRAMSize;
21 uint8_t *bc_MBAR;
24 typedef struct {
25 intptr_t addr;
26 intptr_t size;
27 } reg_t;
29 #endif /* BESTCOMM_PRIVATE_H_ */