Keith Hui has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38381 )
Change subject: intel/i440bx: Use smbus_read_byte() for raminit debug ......................................................................
intel/i440bx: Use smbus_read_byte() for raminit debug
Build broke with CONFIG_DEBUG_RAM_SETUP enabled after commit 3f882faf. This is the fix.
Change-Id: Ib83885fc50c8fab61ced5ff18f22aa4655c5aaab Signed-off-by: Keith Hui buurin@gmail.com --- M src/northbridge/intel/i440bx/debug.c 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/81/38381/1
diff --git a/src/northbridge/intel/i440bx/debug.c b/src/northbridge/intel/i440bx/debug.c index 7df639b..fe1f9c8 100644 --- a/src/northbridge/intel/i440bx/debug.c +++ b/src/northbridge/intel/i440bx/debug.c @@ -14,6 +14,7 @@ #include <console/console.h> #include <device/pci_ops.h> #include <spd.h> +#include <southbridge/intel/i82371eb/i82371eb.h> #include "raminit.h"
void dump_spd_registers(void) @@ -32,7 +33,7 @@ if ((j & 0xf) == 0) { printk(BIOS_DEBUG, "\n%02x: ", j); } - status = spd_read_byte(device, j); + status = smbus_read_byte(device, j); if (status < 0) { printk(BIOS_DEBUG, "bad device\n"); break;