From 7984922fb252942534a108cb72fb7d53d1a16f55 Mon Sep 17 00:00:00 2001 From: Sean Anderson Date: Sat, 6 Jun 2020 15:26:03 -0400 Subject: [PATCH] riscv: sbi: Add newline to error message Signed-off-by: Sean Anderson Reviewed-by: Atish Patra Reviewed-by: Bin Meng --- common/spl/spl_opensbi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/spl/spl_opensbi.c b/common/spl/spl_opensbi.c index e88136e6f3..14f335f75f 100644 --- a/common/spl/spl_opensbi.c +++ b/common/spl/spl_opensbi.c @@ -56,7 +56,7 @@ void spl_invoke_opensbi(struct spl_image_info *spl_image) /* Find U-Boot image in /fit-images */ ret = spl_opensbi_find_uboot_node(spl_image->fdt_addr, &uboot_node); if (ret) { - pr_err("Can't find U-Boot node, %d", ret); + pr_err("Can't find U-Boot node, %d\n", ret); hang(); } -- GitLab