Commit d77b1bef authored by Vasyl Gomonovych's avatar Vasyl Gomonovych Committed by Nishanth Menon

soc: ti: pm33xx: Fix missing newlines in log statements

Add the missing newline characters to two pm33xx log statements
to ensure proper log formatting.
Signed-off-by: default avatarVasyl Gomonovych <gomonovych@gmail.com>
Link: https://lore.kernel.org/r/20240517212930.2019962-1-gomonovych@gmail.comSigned-off-by: default avatarNishanth Menon <nm@ti.com>
parent 1613e604
......@@ -450,14 +450,14 @@ static int am33xx_pm_rtc_setup(void)
rtc_base_virt = of_iomap(np, 0);
if (!rtc_base_virt) {
pr_warn("PM: could not iomap rtc");
pr_warn("PM: could not iomap rtc\n");
error = -ENODEV;
goto err_clk_put;
}
omap_rtc = rtc_class_open("rtc0");
if (!omap_rtc) {
pr_warn("PM: rtc0 not available");
pr_warn("PM: rtc0 not available\n");
error = -EPROBE_DEFER;
goto err_iounmap;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment