diff options
author | Ian Campbell <ijc@hellion.org.uk> | 2014-03-07 01:20:56 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-03-10 13:50:31 -0400 |
commit | c6f3d50b9bbe33541b3cd47a4f35efc4f4ae0fa7 (patch) | |
tree | a0e7e5ccbd271ed1ef0dce92b4d88385bd3a224b /arch/arm/lib | |
parent | ba650e9b5263bfc7579e6775676441eeeca2edc4 (diff) | |
download | u-boot-imx-c6f3d50b9bbe33541b3cd47a4f35efc4f4ae0fa7.zip u-boot-imx-c6f3d50b9bbe33541b3cd47a4f35efc4f4ae0fa7.tar.gz u-boot-imx-c6f3d50b9bbe33541b3cd47a4f35efc4f4ae0fa7.tar.bz2 |
ahci-plat: Provide a weak scsi_init hook
This allow the platform to register the platform ahci device.
Signed-off-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'arch/arm/lib')
-rw-r--r-- | arch/arm/lib/board.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index e9a7708..92e85c4 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -33,6 +33,7 @@ #include <nand.h> #include <onenand_uboot.h> #include <mmc.h> +#include <scsi.h> #include <libfdt.h> #include <fdtdec.h> #include <post.h> @@ -593,6 +594,11 @@ void board_init_r(gd_t *id, ulong dest_addr) mmc_initialize(gd->bd); #endif +#ifdef CONFIG_CMD_SCSI + puts("SCSI: "); + scsi_init(); +#endif + #ifdef CONFIG_HAS_DATAFLASH AT91F_DataflashInit(); dataflash_print_info(); |