[PATCH] driver: net: fm: minor fix in DM ETH support
Madalin Bucur
madalin.bucur at oss.nxp.com
Mon May 4 12:09:12 CEST 2020
Bus callback functions for read/write/reset need to be set only for
DM_ETH, moving endif a bit lower.
Signed-off-by: Madalin Bucur <madalin.bucur at oss.nxp.com>
---
As v1 of the patches were merged, this change made in v3 needs to be
merged on its own.
drivers/net/fm/eth.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/fm/eth.c b/drivers/net/fm/eth.c
index 5f1a023..371c5d2 100644
--- a/drivers/net/fm/eth.c
+++ b/drivers/net/fm/eth.c
@@ -54,10 +54,10 @@ static void dtsec_configure_serdes(struct fm_eth *priv)
bus.priv = priv->mac->phyregs;
#else
bus.priv = priv->pcs_mdio;
-#endif
bus.read = memac_mdio_read;
bus.write = memac_mdio_write;
bus.reset = memac_mdio_reset;
+#endif
qsgmii_loop:
/* SGMII IF mode + AN enable only for 1G SGMII, not for 2.5G */
--
2.1.0
More information about the U-Boot
mailing list