[U-Boot-Users] [PATCH v1 4/5] ATA: enable the sata init on bootup
Dave Liu
r63238 at freescale.com
Sun Mar 16 09:35:29 CET 2008
Signed-off-by: Dave Liu <daveliu at freescale.com>
---
lib_ppc/board.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/lib_ppc/board.c b/lib_ppc/board.c
index fbf1c5d..dff88d5 100644
--- a/lib_ppc/board.c
+++ b/lib_ppc/board.c
@@ -38,6 +38,9 @@
#if defined(CONFIG_CMD_IDE)
#include <ide.h>
#endif
+#if defined(CONFIG_CMD_SATA)
+#include <libata.h>
+#endif
#if defined(CONFIG_CMD_SCSI)
#include <scsi.h>
#endif
@@ -1091,6 +1094,11 @@ void board_init_r (gd_t *id, ulong dest_addr)
#endif
#endif
+#if defined(CONFIG_CMD_SATA)
+ puts ("SATA: ");
+ sata_init ();
+#endif
+
#ifdef CONFIG_LAST_STAGE_INIT
WATCHDOG_RESET ();
/*
--
1.5.4.rc4
More information about the U-Boot
mailing list