diff mbox

[U-Boot,6/7] zynq: Use board_eth_init if CMD_NET is not enabled

Message ID 1522213a3933200d9270993a1062b0e693381274.1390382565.git.michal.simek@xilinx.com
State Accepted
Delegated to: Michal Simek
Headers show

Commit Message

Michal Simek Jan. 22, 2014, 9:23 a.m. UTC
board_eth_init can be also called in cases where CMD_NET
is not enabled.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---

 board/xilinx/zynq/board.c | 2 --
 1 file changed, 2 deletions(-)

--
1.8.2.3
diff mbox

Patch

diff --git a/board/xilinx/zynq/board.c b/board/xilinx/zynq/board.c
index 08932a2..27aeaa4 100644
--- a/board/xilinx/zynq/board.c
+++ b/board/xilinx/zynq/board.c
@@ -83,7 +83,6 @@  int board_late_init(void)
 	return 0;
 }

-#ifdef CONFIG_CMD_NET
 int board_eth_init(bd_t *bis)
 {
 	u32 ret = 0;
@@ -117,7 +116,6 @@  int board_eth_init(bd_t *bis)
 #endif
 	return ret;
 }
-#endif

 #ifdef CONFIG_CMD_MMC
 int board_mmc_init(bd_t *bd)