diff options
author | Heinrich Schuchardt | 2018-06-15 07:01:26 +0200 |
---|---|---|
committer | Tom Rini | 2018-07-10 16:55:58 -0400 |
commit | 3804f5bb4acfa7e58d0a0890225d8584422f3629 (patch) | |
tree | b633e35859f2d131f514d73bffeacb36fa6d3188 /common | |
parent | 6696de885eaf1fa6c2104ce70216abbc87d4fd43 (diff) |
common: print \n in initr_scsi()
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>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_r.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/board_r.c b/common/board_r.c index 6949d4af0e3..e9f827a741e 100644 --- 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; } |