[U-Boot] [PATCH] arm: add ide initialization
Michael Walle
michael at walle.cc
Fri Oct 7 00:23:06 CEST 2011
Call ide_init() in the board initialization if IDE support is compiled in.
Signed-off-by: Michael Walle <michael at walle.cc>
---
arch/arm/lib/board.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c
index 705d4d2..9addab8 100644
--- a/arch/arm/lib/board.c
+++ b/arch/arm/lib/board.c
@@ -596,6 +596,11 @@ void board_init_r(gd_t *id, ulong dest_addr)
#endif
#endif
+#if defined(CONFIG_CMD_IDE)
+ puts ("IDE: ");
+ ide_init ();
+#endif
+
#ifdef CONFIG_POST
post_run(NULL, POST_RAM | post_bootmode_get(0));
#endif
--
1.7.2.5
More information about the U-Boot
mailing list