blob: 3bdec56cb519dc8e7c3e92fa1117bb3f2b3c6b61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef RAMINIT_H
#define RAMINIT_H
/* I think the 855 is only four sockets -- RGM */
#define DIMM_SOCKETS 4
struct mem_controller {
device_t d0;
uint16_t channel0[DIMM_SOCKETS];
};
#endif /* RAMINIT_H */
|