summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJagan Teki <[email protected]>2019-09-17 11:40:39 +0530
committerKever Yang <[email protected]>2019-09-19 09:35:31 +0800
commit891d4d1fcaf386d6273b61a1d07bd52162e22e38 (patch)
tree5b7b416e482e479d6d1e81e8b616f3029d9d1f03
parent4f24163efad8a886800a02da0dd787996d7adfa7 (diff)
rockchip: spi-boot-order: Trival fix to newline missing
newline \n was missed in fdt_path_offset, error loop. Signed-off-by: Jagan Teki <[email protected]> Reviewed-by: Kever Yang<[email protected]>
-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 c19c285c070..fa8e096426b 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;
}