lib/spd_bin: Print out correct SMBus SPD address in dump_spd_info
With change dd82edc388
(lib/spd_bin: make SMBus SPD addresses an
input), SMBus SPD addresses are accepted from the mainboard and not
calculated within the spd_bin library routines. Use the addr_map
values to print correct address in dump_spd_info.
Change-Id: Iff37e382aeac9704f74bafc2ecb27f14c478723f
Signed-off-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-on: https://review.coreboot.org/20118
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Shelley Chen <shchen@google.com>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
66fe0c43be
commit
a26f9da6ba
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ void dump_spd_info(struct spd_block *blk)
|
|||
|
||||
for (i = 0; i < CONFIG_DIMM_MAX; i++)
|
||||
if (blk->spd_array[i] != NULL && blk->spd_array[i][0] != 0) {
|
||||
printk(BIOS_DEBUG, "SPD @ 0x%02X\n", 0xA0|(i << 1));
|
||||
printk(BIOS_DEBUG, "SPD @ 0x%02X\n", blk->addr_map[i]);
|
||||
print_spd_info(blk->spd_array[i]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue