diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c index 6c955ca..73a469c 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -848,15 +848,18 @@ static int stmmac_init_phy(struct net_device *dev) priv->oldduplex = DUPLEX_UNKNOWN; if (priv->hw->mac->init_phy) { + pr_info("init_phy\n"); ret = priv->hw->mac->init_phy(dev); if (ret) return ret; } if (priv->plat->phy_node) { + pr_info("%s of_phy_connect\n"); phydev = of_phy_connect(dev, priv->plat->phy_node, &stmmac_adjust_link, 0, interface); } else { + pr_info("%s phy_connect BAD!\n"); snprintf(bus_id, MII_BUS_ID_SIZE, "stmmac-%x", priv->plat->bus_id);