]> git.karo-electronics.de Git - karo-tx-uboot.git/commitdiff
board_r: run scsi init() on ARM too
authorIan Campbell <ijc@hellion.org.uk>
Mon, 21 Jul 2014 18:23:18 +0000 (19:23 +0100)
committerTom Rini <trini@ti.com>
Tue, 22 Jul 2014 11:44:28 +0000 (07:44 -0400)
This has been disabled for ARM in initr_scsi since that function was
introduced. However it works fine for me on Cubieboard and Cubietruck (with the
upcoming AHCI glue patch).

I also tested on two random ARM platforms which seem to define CONFIG_CMD_SCSI:
 - highbank worked fine (on midway hardware)
 - omap5_uevm built OK and I confirmed using objdump that things were as
   expected (i.e. the default weak scsi_init nop was used).

While there remove the mismatched comment from the #endif (omitting the comment
seems to be the prevailing style in this file).

Signed-off-by: Ian Campbell <ijc@hellion.org.uk>
Acked-by: Simon Glass <sjg@chromium.org>
common/board_r.c

index 602a239380d02951793b1d6cb34cc1c5be686f37..4479acbb727c612d6438f604d447b118a17df364 100644 (file)
@@ -588,15 +588,12 @@ static int initr_status_led(void)
 #if defined(CONFIG_CMD_SCSI)
 static int initr_scsi(void)
 {
-       /* Not supported properly on ARM yet */
-#ifndef CONFIG_ARM
        puts("SCSI:  ");
        scsi_init();
-#endif
 
        return 0;
 }
-#endif /* CONFIG_CMD_NET */
+#endif
 
 #if defined(CONFIG_CMD_DOC)
 static int initr_doc(void)