rockchip: spi-boot-order: Trival fix to newline missing
authorJagan Teki <jagan@amarulasolutions.com>
Tue, 17 Sep 2019 06:10:39 +0000 (11:40 +0530)
committerKever Yang <kever.yang@rock-chips.com>
Thu, 19 Sep 2019 01:35:31 +0000 (09:35 +0800)
newline \n was missed in fdt_path_offset, error loop.

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Reviewed-by: Kever Yang<kever.yang@rock-chips.com>
arch/arm/mach-rockchip/spl-boot-order.c

index c19c285c07081f9f0fef5ddff74d0edb752cd563..fa8e096426b68cafb0a95977ffcb2c00130e0ae8 100644 (file)
@@ -134,7 +134,7 @@ void board_boot_order(u32 *spl_boot_list)
                /* Try to resolve the config item (or alias) as a path */
                node = fdt_path_offset(blob, conf);
                if (node < 0) {
-                       debug("%s: could not find %s in FDT", __func__, conf);
+                       debug("%s: could not find %s in FDT\n", __func__, conf);
                        continue;
                }