soc: ti: pm33xx: Fix missing newlines in log statements
authorVasyl Gomonovych <gomonovych@gmail.com>
Fri, 17 May 2024 21:29:10 +0000 (14:29 -0700)
committerNishanth Menon <nm@ti.com>
Thu, 27 Jun 2024 22:43:50 +0000 (17:43 -0500)
Add the missing newline characters to two pm33xx log statements
to ensure proper log formatting.

Signed-off-by: Vasyl Gomonovych <gomonovych@gmail.com>
Link: https://lore.kernel.org/r/20240517212930.2019962-1-gomonovych@gmail.com
Signed-off-by: Nishanth Menon <nm@ti.com>
drivers/soc/ti/pm33xx.c

index 8e983c3c4e035f42ad0d73c58afd6dbb7a69c021..3a56bbf3268ab3a842dfe2271403ff73cc3cbce9 100644 (file)
@@ -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;
                }