From e97eb8f94b6db2498036c9abae07184fd6fe81f2 Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Sat, 18 Jun 2022 15:28:00 -0500 Subject: device/i2c_bus: Add missing trailing newline to console output Improves readability in console log. Change-Id: Ied0cbb746ff3ca6250ed9322dfb2726da0949e16 Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/c/coreboot/+/65230 Tested-by: build bot (Jenkins) Reviewed-by: Felix Held Reviewed-by: Paul Menzel --- src/device/i2c_bus.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/device') diff --git a/src/device/i2c_bus.c b/src/device/i2c_bus.c index df36404660..bccd9a8c97 100644 --- a/src/device/i2c_bus.c +++ b/src/device/i2c_bus.c @@ -32,7 +32,8 @@ struct bus *i2c_link(const struct device *const dev) } if (!link) - printk(BIOS_ALERT, "%s Cannot find I2C or SMBus bus operations", dev_path(dev)); + printk(BIOS_ALERT, "%s Cannot find I2C or SMBus bus operations\n", + dev_path(dev)); return link; } -- cgit v1.2.3