From a26f9da6ba42b4fa45fd0d4d7e8e3cd5fb574903 Mon Sep 17 00:00:00 2001 From: Furquan Shaikh Date: Thu, 8 Jun 2017 13:28:59 -0700 Subject: 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 Reviewed-on: https://review.coreboot.org/20118 Tested-by: build bot (Jenkins) Reviewed-by: Shelley Chen Reviewed-by: Aaron Durbin --- src/lib/spd_bin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/spd_bin.c b/src/lib/spd_bin.c index 3e26004a63..a9f6a36045 100644 --- a/src/lib/spd_bin.c +++ b/src/lib/spd_bin.c @@ -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]); } } -- cgit v1.2.3