diff options
| author | Marian Balakowicz <m8@semihalf.com> | 2005-10-28 22:30:33 +0200 | 
|---|---|---|
| committer | Marian Balakowicz <m8@semihalf.com> | 2005-10-28 22:30:33 +0200 | 
| commit | 63ff004c4fcad9f690bf44dbd15d568bb47aac2d (patch) | |
| tree | 7b64074a85da8118b6c862f14de1171b36ade0f7 /lib_arm/board.c | |
| parent | fe93483a0ab9dcbf7794ffbf0b029ba138380e81 (diff) | |
| download | olio-uboot-2014.01-63ff004c4fcad9f690bf44dbd15d568bb47aac2d.tar.xz olio-uboot-2014.01-63ff004c4fcad9f690bf44dbd15d568bb47aac2d.zip | |
Add support for multiple PHYs.
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. */ |