From 8eb55bbfe7e3bd601c4bece24e0772dba5410827 Mon Sep 17 00:00:00 2001 From: Arthur Heymans Date: Wed, 10 May 2017 16:28:38 +0200 Subject: nb/amdk8/debug.c Fix building with CONFIG_DEBUG_SMBUS Problem was introduced by fb2f667da2 "nb/amd/amdk8: Link raminit_f.c" which linked debug.c and was not tested with this option. Change-Id: I8597a6915c65ea783a864110cb23ecb34ea0611b Signed-off-by: Arthur Heymans Reviewed-on: https://review.coreboot.org/19653 Tested-by: build bot (Jenkins) Reviewed-by: Swift Geek Reviewed-by: Paul Menzel Reviewed-by: Stefan Reinauer --- src/northbridge/amd/amdk8/debug.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/northbridge/amd/amdk8/debug.c') diff --git a/src/northbridge/amd/amdk8/debug.c b/src/northbridge/amd/amdk8/debug.c index e1eade4265..69c3103488 100644 --- a/src/northbridge/amd/amdk8/debug.c +++ b/src/northbridge/amd/amdk8/debug.c @@ -8,6 +8,7 @@ #include #include #include +#include "raminit.h" void print_debug_addr(const char *str, void *val) { @@ -153,7 +154,7 @@ void dump_spd_registers(const struct mem_controller *ctrl) if ((j & 0xf) == 0) { printk(BIOS_DEBUG, "\n%02x: ", j); } - status = smbus_read_byte(device, j); + status = spd_read_byte(device, j); if (status < 0) { break; } @@ -172,7 +173,7 @@ void dump_spd_registers(const struct mem_controller *ctrl) if ((j & 0xf) == 0) { printk(BIOS_DEBUG, "\n%02x: ", j); } - status = smbus_read_byte(device, j); + status = spd_read_byte(device, j); if (status < 0) { break; } @@ -189,12 +190,13 @@ void dump_smbus_registers(void) printk(BIOS_DEBUG, "\n"); for (device = 1; device < 0x80; device++) { int j; - if (smbus_read_byte(device, 0) < 0) continue; + if (spd_read_byte(device, 0) < 0) + continue; printk(BIOS_DEBUG, "smbus: %02x", device); for (j = 0; j < 256; j++) { int status; unsigned char byte; - status = smbus_read_byte(device, j); + status = spd_read_byte(device, j); if (status < 0) { break; } -- cgit v1.2.3