summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJagan Teki <jagan@amarulasolutions.com>2019-09-17 09:10:39 +0300
committerKever Yang <kever.yang@rock-chips.com>2019-09-19 04:35:31 +0300
commit891d4d1fcaf386d6273b61a1d07bd52162e22e38 (patch)
tree5b7b416e482e479d6d1e81e8b616f3029d9d1f03
parent4f24163efad8a886800a02da0dd787996d7adfa7 (diff)
downloadu-boot-891d4d1fcaf386d6273b61a1d07bd52162e22e38.tar.xz
rockchip: spi-boot-order: Trival fix to newline missing
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>
-rw-r--r--arch/arm/mach-rockchip/spl-boot-order.c2
1 files changed, 1 insertions, 1 deletions
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;
}