Przeglądaj źródła

net: ethernet: cpmac: Call SET_NETDEV_DEV()

The TI CPMAC driver calls into PHYLIB which now checks for
net_device->dev.parent, so make sure we do set it before calling into
any MDIO/PHYLIB related function.

Fixes: ec988ad78ed6 ("phy: Don't increment MDIO bus refcount unless it's a different owner")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Florian Fainelli 8 lat temu
rodzic
commit
5579f28cc8
1 zmienionych plików z 1 dodań i 0 usunięć
  1. 1 0
      drivers/net/ethernet/ti/cpmac.c

+ 1 - 0
drivers/net/ethernet/ti/cpmac.c

@@ -1113,6 +1113,7 @@ static int cpmac_probe(struct platform_device *pdev)
 	if (!dev)
 	if (!dev)
 		return -ENOMEM;
 		return -ENOMEM;
 
 
+	SET_NETDEV_DEV(dev, &pdev->dev);
 	platform_set_drvdata(pdev, dev);
 	platform_set_drvdata(pdev, dev);
 	priv = netdev_priv(dev);
 	priv = netdev_priv(dev);