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.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/net/stmmac/stmmac_main.c b/drivers/net/stmmac/stmmac_main.c
index 508fba8fa07f..79a938117878 100644
--- a/drivers/net/stmmac/stmmac_main.c
+++ b/drivers/net/stmmac/stmmac_main.c
@@ -305,8 +305,8 @@ static int stmmac_init_phy(struct net_device *dev)
305{ 305{
306 struct stmmac_priv *priv = netdev_priv(dev); 306 struct stmmac_priv *priv = netdev_priv(dev);
307 struct phy_device *phydev; 307 struct phy_device *phydev;
308 char phy_id[BUS_ID_SIZE]; /* PHY to connect */ 308 char phy_id[MII_BUS_ID_SIZE + 3];
309 char bus_id[BUS_ID_SIZE]; 309 char bus_id[MII_BUS_ID_SIZE];
310 310
311 priv->oldlink = 0; 311 priv->oldlink = 0;
312 priv->speed = 0; 312 priv->speed = 0;
@@ -318,7 +318,8 @@ static int stmmac_init_phy(struct net_device *dev)
318 } 318 }
319 319
320 snprintf(bus_id, MII_BUS_ID_SIZE, "%x", priv->bus_id); 320 snprintf(bus_id, MII_BUS_ID_SIZE, "%x", priv->bus_id);
321 snprintf(phy_id, BUS_ID_SIZE, PHY_ID_FMT, bus_id, priv->phy_addr); 321 snprintf(phy_id, MII_BUS_ID_SIZE + 3, PHY_ID_FMT, bus_id,
322 priv->phy_addr);
322 pr_debug("stmmac_init_phy: trying to attach to %s\n", phy_id); 323 pr_debug("stmmac_init_phy: trying to attach to %s\n", phy_id);
323 324
324 phydev = phy_connect(dev, phy_id, &stmmac_adjust_link, 0, 325 phydev = phy_connect(dev, phy_id, &stmmac_adjust_link, 0,