]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
clk: stm32f4: pr_err() strings should end with newlines
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Fri, 24 Nov 2017 06:55:28 +0000 (12:25 +0530)
committerStephen Boyd <sboyd@codeaurora.org>
Thu, 7 Dec 2017 06:39:51 +0000 (22:39 -0800)
pr_err() messages should end with a new-line to avoid other messages
being concatenated.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/clk-stm32f4.c

index 96c6b6bc8f0e475f9d03de0ffa5210a2f06acae2..da44f8dc1d292bd3b145177d00b021e0cc7c7f6b 100644 (file)
@@ -1424,7 +1424,7 @@ static void __init stm32f4_rcc_init(struct device_node *np)
 
        base = of_iomap(np, 0);
        if (!base) {
-               pr_err("%s: unable to map resource", np->name);
+               pr_err("%s: unable to map resource\n", np->name);
                return;
        }