]> git.sur5r.net Git - u-boot/commitdiff
common: print \n in initr_scsi()
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Fri, 15 Jun 2018 05:01:26 +0000 (07:01 +0200)
committerTom 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

index 6949d4af0e319a3acd2adbc653c1fb6ae575e9d7..e9f827a741eee1f05a7c6dd586c4c878e845249a 100644 (file)
@@ -553,6 +553,7 @@ static int initr_scsi(void)
 {
        puts("SCSI:  ");
        scsi_init();
 {
        puts("SCSI:  ");
        scsi_init();
+       puts("\n");
 
        return 0;
 }
 
        return 0;
 }