i2c: i2c-gpio: add newline

Add newline at the end of the printed string.

Signed-off-by: Sergei Antonov <saproj@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heiko Schocher <hs@denx.de>
This commit is contained in:
Sergei Antonov 2022-10-20 17:28:14 +03:00 committed by Heiko Schocher
parent 6d133b3158
commit b0c485fd38

View File

@ -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;
}