projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6696de8
)
common: print \n in initr_scsi()
author
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Fri, 15 Jun 2018 05:01:26 +0000
(07:01 +0200)
committer
Tom Rini
<trini@konsulko.com>
Tue, 10 Jul 2018 20:55:58 +0000
(16:55 -0400)
Typically init_scsi() does not output anything. So initr_scsi() should
provide a \n or we may see borked output like
SCSI: Net: No ethernet found.
as observed with sandbox_defconfig.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
common/board_r.c
patch
|
blob
|
history
diff --git
a/common/board_r.c
b/common/board_r.c
index 6949d4af0e319a3acd2adbc653c1fb6ae575e9d7..e9f827a741eee1f05a7c6dd586c4c878e845249a 100644
(file)
--- a/
common/board_r.c
+++ b/
common/board_r.c
@@
-553,6
+553,7
@@
static int initr_scsi(void)
{
puts("SCSI: ");
scsi_init();
+ puts("\n");
return 0;
}