diff options
Diffstat (limited to 'lib_ppc/board.c')
| -rw-r--r-- | lib_ppc/board.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/lib_ppc/board.c b/lib_ppc/board.c index db80f7756..cf0e3fdf4 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -763,6 +763,12 @@ void board_init_r (gd_t *id, ulong dest_addr)  	spi_init_r ();  #endif +#if (CONFIG_COMMANDS & CFG_CMD_NAND) +	WATCHDOG_RESET (); +	puts ("NAND:  "); +	nand_init();		/* go init the NAND */ +#endif +  	/* relocate environment function pointers etc. */  	env_relocate (); @@ -959,12 +965,6 @@ void board_init_r (gd_t *id, ulong dest_addr)  	doc_init ();  #endif -#if (CONFIG_COMMANDS & CFG_CMD_NAND) -	WATCHDOG_RESET (); -	puts ("NAND:  "); -	nand_init();		/* go init the NAND */ -#endif -  #if (CONFIG_COMMANDS & CFG_CMD_NET)  #if defined(CONFIG_NET_MULTI)  	WATCHDOG_RESET (); |