[PATCHv2 07/13] powerpc: p1_p2_rdb: Don't compile board_eth_init() when DM_ETH enabled
Zhiqiang Hou
Zhiqiang.Hou at nxp.com
Fri Jun 5 10:55:11 CEST 2020
From: Hou Zhiqiang <Zhiqiang.Hou at nxp.com>
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 <Zhiqiang.Hou at nxp.com>
---
V2:
- Rebase the patch, no change intended.
board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c b/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c
index 671109a73a..9c9f1d2c1d 100644
--- a/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c
+++ b/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c
@@ -356,6 +356,7 @@ int board_early_init_r(void)
return 0;
}
+#ifndef CONFIG_DM_ETH
int board_eth_init(bd_t *bis)
{
struct fsl_pq_mdio_info mdio_info;
@@ -403,6 +404,7 @@ int board_eth_init(bd_t *bis)
return pci_eth_init(bis);
}
+#endif
#if defined(CONFIG_QE) && \
(defined(CONFIG_TARGET_P1025RDB) || defined(CONFIG_TARGET_P1021RDB))
--
2.25.1
More information about the U-Boot
mailing list