repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Indentation fix, cleanup.
[AROS.git]
/
arch
/
ppc-chrp
/
efika
/
bestcomm
/
bestcomm_private.h
blob
391dc8cc667b29e714a4fd2dc7dd3d448d3733b9
1
/*
2
* bestcomm_private.h
3
*
4
* Created on: Mar 15, 2009
5
* Author: misc
6
*/
7
8
#ifndef BESTCOMM_PRIVATE_H_
9
#define BESTCOMM_PRIVATE_H_
10
11
#include <exec/nodes.h>
12
#include <asm/mpc5200b.h>
13
#include <inttypes.h>
14
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
;
22
};
23
24
typedef
struct
{
25
intptr_t
addr
;
26
intptr_t
size
;
27
}
reg_t
;
28
29
#endif
/* BESTCOMM_PRIVATE_H_ */