Fix CPUID typo. This caused fid to memory speed calculations to be off.
[coreboot.git] / src / northbridge / amd / amdk8 / raminit.h
1 #ifndef RAMINIT_H
2 #define RAMINIT_H
3
4 #define NODE_NUMS 8
5
6 #define DIMM_SOCKETS 4
7 struct mem_controller {
8         unsigned node_id;
9         device_t f0, f1, f2, f3;
10         uint16_t channel0[DIMM_SOCKETS];
11         uint16_t channel1[DIMM_SOCKETS];
12 };
13
14 #endif /* RAMINIT_H */