From: Jagan Teki Date: Tue, 17 Sep 2019 06:10:39 +0000 (+0530) Subject: rockchip: spi-boot-order: Trival fix to newline missing X-Git-Tag: v2019.10-rc4~4^2~6 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=891d4d1fcaf386d6273b61a1d07bd52162e22e38;p=oweals%2Fu-boot.git rockchip: spi-boot-order: Trival fix to newline missing newline \n was missed in fdt_path_offset, error loop. Signed-off-by: Jagan Teki Reviewed-by: Kever Yang --- diff --git a/arch/arm/mach-rockchip/spl-boot-order.c b/arch/arm/mach-rockchip/spl-boot-order.c index c19c285c07..fa8e096426 100644 --- a/arch/arm/mach-rockchip/spl-boot-order.c +++ b/arch/arm/mach-rockchip/spl-boot-order.c @@ -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; }