From: Sergei Antonov Date: Thu, 20 Oct 2022 14:28:14 +0000 (+0300) Subject: i2c: i2c-gpio: add newline X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=b0c485fd384b2706717d4c19fa9837c1d785e9e8;p=u-boot.git i2c: i2c-gpio: add newline Add newline at the end of the printed string. Signed-off-by: Sergei Antonov Reviewed-by: Simon Glass Reviewed-by: Heiko Schocher --- diff --git a/drivers/i2c/i2c-gpio.c b/drivers/i2c/i2c-gpio.c index 1aedad5c8e..4ed9e9e7cd 100644 --- a/drivers/i2c/i2c-gpio.c +++ b/drivers/i2c/i2c-gpio.c @@ -362,7 +362,7 @@ static int i2c_gpio_of_to_plat(struct udevice *dev) return 0; error: - pr_err("Can't get %s gpios! Error: %d", dev->name, ret); + pr_err("Can't get %s gpios! Error: %d\n", dev->name, ret); return ret; }