net: ethernet: hip04: Call SET_NETDEV_DEV()
The hip04 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: ec988ad78e
("phy: Don't increment MDIO bus refcount unless it's a different owner")
Signed-off-by: Dongpo Li <lidongpo@hisilicon.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2087d421a5
commit
8cd1f70f20
|
@ -828,6 +828,7 @@ static int hip04_mac_probe(struct platform_device *pdev)
|
|||
priv = netdev_priv(ndev);
|
||||
priv->ndev = ndev;
|
||||
platform_set_drvdata(pdev, ndev);
|
||||
SET_NETDEV_DEV(ndev, &pdev->dev);
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
priv->base = devm_ioremap_resource(d, res);
|
||||
|
@ -903,7 +904,6 @@ static int hip04_mac_probe(struct platform_device *pdev)
|
|||
ndev->priv_flags |= IFF_UNICAST_FLT;
|
||||
ndev->irq = irq;
|
||||
netif_napi_add(ndev, &priv->napi, hip04_rx_poll, NAPI_POLL_WEIGHT);
|
||||
SET_NETDEV_DEV(ndev, &pdev->dev);
|
||||
|
||||
hip04_reset_ppe(priv);
|
||||
if (priv->phy_mode == PHY_INTERFACE_MODE_MII)
|
||||
|
|
Loading…
Reference in New Issue