EricR Lai has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/33432
Change subject: drivers/i2c: Add device info to cbmem log ......................................................................
drivers/i2c: Add device info to cbmem log
Add some device I2C info to cbmem log
BUG=none BRANCH=none TEST=Boot up and check cbmem -c can find the SAR i2c info
Signed-off-by: Eric Lai ericr_lai@compal.corp-partner.google.com Change-Id: Ia143932bb660ed2c2cea76310f11ede2b727adf4 --- M src/drivers/i2c/sx9310/sx9310.c 1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/32/33432/1
diff --git a/src/drivers/i2c/sx9310/sx9310.c b/src/drivers/i2c/sx9310/sx9310.c index aafd7c7..8157874 100644 --- a/src/drivers/i2c/sx9310/sx9310.c +++ b/src/drivers/i2c/sx9310/sx9310.c @@ -15,6 +15,7 @@
#include <arch/acpi_device.h> #include <arch/acpigen.h> +#include <console/console.h> #include <device/i2c_simple.h> #include <device/device.h> #include <device/path.h> @@ -74,6 +75,9 @@
acpigen_pop_len(); /* Device */ acpigen_pop_len(); /* Scope */ + + printk(BIOS_INFO, "%s: %s at %s\n", acpi_device_path(dev), + config->desc ? : dev->chip_ops->name, dev_path(dev)); }
#undef REGISTER