From: Macpaul Lin Date: Fri, 18 Nov 2011 09:01:31 +0000 (+0800) Subject: nds32/lib: add ide generic support X-Git-Tag: v2011.12-rc1~158^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a2308547d15c0c678a3ce06ac81850f809147142;p=karo-tx-uboot.git nds32/lib: add ide generic support Add ide generic support. Signed-off-by: Macpaul Lin --- diff --git a/arch/nds32/lib/board.c b/arch/nds32/lib/board.c index 2fd0e93d45..66e45370cc 100644 --- a/arch/nds32/lib/board.c +++ b/arch/nds32/lib/board.c @@ -351,6 +351,11 @@ void board_init_r(gd_t *id, ulong dest_addr) nand_init(); /* go init the NAND */ #endif +#if defined(CONFIG_CMD_IDE) + puts("IDE: "); + ide_init(); +#endif + #ifdef CONFIG_GENERIC_MMC puts("MMC: "); mmc_initialize(gd->bd);