drivers/i2c/max98373: fix error message formatting
This adds a missing newline to a printk in the max98373 driver. BUG=none TEST=verified BIOS boot log is properly formatted on volteer. Change-Id: I1c989729bdc71736975901566023e0057a6d0556 Signed-off-by: Caveh Jalali <caveh@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41167 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
This commit is contained in:
parent
e37f7f055f
commit
c8e4dcb569
|
@ -25,7 +25,7 @@ static void max98373_fill_ssdt(const struct device *dev)
|
||||||
struct acpi_dp *dp;
|
struct acpi_dp *dp;
|
||||||
|
|
||||||
if (!dev->enabled || !scope) {
|
if (!dev->enabled || !scope) {
|
||||||
printk(BIOS_ERR, "%s: dev not enabled", __func__);
|
printk(BIOS_ERR, "%s: dev not enabled\n", __func__);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue