blob: 27f1844d3c64d4bce37a2ac72acfb8d7bd1e58ff (
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
|
void dump_spd_registers(void)
{
unsigned device;
device = SMBUS_MEM_DEVICE_START;
printk_debug("\n");
while(device <= SMBUS_MEM_DEVICE_END) {
int status = 0;
int i;
printk_debug("dimm %02x", device);
for(i = 0; (i < 256) && (status == 0); i++) {
unsigned char byte;
if ((i % 20) == 0) {
printk_debug("\n%3d: ", i);
}
status = smbus_read_byte(device, i, &byte);
if (status != 0) {
printk_debug("bad device\n");
continue;
}
printk_debug("%02x ", byte);
}
device += SMBUS_MEM_DEVICE_INC;
printk_debug("\n");
}
}
|