projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bcfe764
)
riscv: sbi: Add newline to error message
author
Sean Anderson
<seanga2@gmail.com>
Sat, 6 Jun 2020 19:26:03 +0000
(15:26 -0400)
committer
Andes
<uboot@andestech.com>
Thu, 2 Jul 2020 02:02:57 +0000
(10:02 +0800)
Signed-off-by: Sean Anderson <seanga2@gmail.com>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Reviewed-by: Bin Meng <bin.meng@windriver.com>
common/spl/spl_opensbi.c
patch
|
blob
|
history
diff --git
a/common/spl/spl_opensbi.c
b/common/spl/spl_opensbi.c
index
e88136e
..
14f335f
100644
(file)
--- 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();
}