diff options
Diffstat (limited to 'lib_arm/board.c')
| -rw-r--r-- | lib_arm/board.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/lib_arm/board.c b/lib_arm/board.c index a3588d693..fa3c92e09 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -345,8 +345,10 @@ void start_armboot (void)  #ifdef BOARD_LATE_INIT  	board_late_init ();  #endif -#if (CONFIG_COMMANDS & CFG_CMD_NET) && defined(CONFIG_NET_MULTI) +#if (CONFIG_COMMANDS & CFG_CMD_NET) +#if defined(CONFIG_NET_MULTI)  	puts ("Net:   "); +#endif  	eth_initialize(gd->bd);  #endif  	/* main_loop() can return to retry autoboot, if so just run it again. */ |