From: Hou Zhiqiang Date: Mon, 21 Sep 2020 09:45:04 +0000 (+0530) Subject: p1010rdb: Don't compile board_eth_init() for DM_ETH X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=c5166ceb13ee30d1ce66d7f503adc893b72e91e0;p=u-boot.git p1010rdb: Don't compile board_eth_init() for DM_ETH The board_eth_init() is only used by legacy ethernet driver framework, so do not compile it when DM_ETH config has been selected. Signed-off-by: Hou Zhiqiang Reviewed-by: Vladimir Oltean [Rebased] Signed-off-by: Priyanka Jain --- diff --git a/board/freescale/p1010rdb/p1010rdb.c b/board/freescale/p1010rdb/p1010rdb.c index accf2f24e5..4c3a03e7cd 100644 --- a/board/freescale/p1010rdb/p1010rdb.c +++ b/board/freescale/p1010rdb/p1010rdb.c @@ -484,6 +484,7 @@ int checkboard(void) return 0; } +#ifndef CONFIG_DM_ETH int board_eth_init(struct bd_info *bis) { #ifdef CONFIG_TSEC_ENET @@ -524,6 +525,7 @@ int board_eth_init(struct bd_info *bis) return pci_eth_init(bis); } +#endif #if defined(CONFIG_OF_BOARD_SETUP) void fdt_del_flexcan(void *blob)