diff options
Diffstat (limited to 'lib_ppc')
| -rw-r--r-- | lib_ppc/board.c | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/lib_ppc/board.c b/lib_ppc/board.c index d90607d02..3bcfb4531 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -48,6 +48,9 @@  #include <status_led.h>  #endif  #include <net.h> +#ifdef CONFIG_GENERIC_MMC +#include <mmc.h> +#endif  #include <serial.h>  #ifdef CONFIG_SYS_ALLOC_DPRAM  #if !defined(CONFIG_CPM2) @@ -1075,6 +1078,12 @@ void board_init_r (gd_t *id, ulong dest_addr)  	scsi_init ();  #endif +#ifdef CONFIG_GENERIC_MMC +	WATCHDOG_RESET (); +	puts ("MMC:  "); +	mmc_initialize (bd); +#endif +  #if defined(CONFIG_CMD_DOC)  	WATCHDOG_RESET ();  	puts ("DOC:   "); |