[U-Boot] [PATCH 2/3] imx: initialize fec only when enabled
Parthiban Nallathambi
pn at denx.de
Fri Aug 23 16:35:09 UTC 2019
board early initialize fec ethernet controller pinmux
only when FEC is enabled
Signed-off-by: Parthiban Nallathambi <pn at denx.de>
---
board/phytec/pcl063/pcl063.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/board/phytec/pcl063/pcl063.c b/board/phytec/pcl063/pcl063.c
index f8cbd1c11e..96dd9e38f3 100644
--- a/board/phytec/pcl063/pcl063.c
+++ b/board/phytec/pcl063/pcl063.c
@@ -178,7 +178,9 @@ int board_phy_config(struct phy_device *phydev)
int board_early_init_f(void)
{
setup_iomux_uart();
+#ifdef CONFIG_FEC_MXC
setup_iomux_fec();
+#endif
return 0;
}
--
2.21.0
More information about the U-Boot
mailing list