aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/stmmac/stmmac_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/stmmac/stmmac_main.c')
-rw-r--r--drivers/net/stmmac/stmmac_main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/stmmac/stmmac_main.c b/drivers/net/stmmac/stmmac_main.c
index d50fe6f171ef..a02006d57a59 100644
--- a/drivers/net/stmmac/stmmac_main.c
+++ b/drivers/net/stmmac/stmmac_main.c
@@ -1067,6 +1067,9 @@ static int stmmac_open(struct net_device *dev)
1067 1067
1068 /* Copy the MAC addr into the HW */ 1068 /* Copy the MAC addr into the HW */
1069 priv->mac_type->ops->set_umac_addr(ioaddr, dev->dev_addr, 0); 1069 priv->mac_type->ops->set_umac_addr(ioaddr, dev->dev_addr, 0);
1070 /* If required, perform hw setup of the bus. */
1071 if (priv->bus_setup)
1072 priv->bus_setup(ioaddr);
1070 /* Initialize the MAC Core */ 1073 /* Initialize the MAC Core */
1071 priv->mac_type->ops->core_init(ioaddr); 1074 priv->mac_type->ops->core_init(ioaddr);
1072 1075