
16 Oct
2011
16 Oct
'11
8:39 p.m.
Call ide_init() in the board initialization if IDE support is compiled in.
Signed-off-by: Michael Walle michael@walle.cc --- changes in v2: - style fix: remove whitespace before parenthesis --- 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..dc0293e 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