net: axienet: Support phy-less mode of operation
This patch adds proper checks to handle the PHY-less case. Signed-off-by: Srikanth Thokala <sthokal@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f080a8c35d
commit
d7cc3163e0
1 changed files with 5 additions and 5 deletions
|
@ -940,10 +940,9 @@ static int axienet_open(struct net_device *ndev)
|
||||||
PHY_INTERFACE_MODE_RGMII_ID);
|
PHY_INTERFACE_MODE_RGMII_ID);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!lp->phy_dev) {
|
if (!lp->phy_dev)
|
||||||
dev_err(lp->dev, "of_phy_connect() failed\n");
|
dev_err(lp->dev, "of_phy_connect() failed\n");
|
||||||
return -ENODEV;
|
else
|
||||||
}
|
|
||||||
phy_start(lp->phy_dev);
|
phy_start(lp->phy_dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1606,6 +1605,7 @@ static int axienet_of_probe(struct platform_device *op)
|
||||||
lp->coalesce_count_tx = XAXIDMA_DFT_TX_THRESHOLD;
|
lp->coalesce_count_tx = XAXIDMA_DFT_TX_THRESHOLD;
|
||||||
|
|
||||||
lp->phy_node = of_parse_phandle(op->dev.of_node, "phy-handle", 0);
|
lp->phy_node = of_parse_phandle(op->dev.of_node, "phy-handle", 0);
|
||||||
|
if (lp->phy_node)
|
||||||
ret = axienet_mdio_setup(lp, op->dev.of_node);
|
ret = axienet_mdio_setup(lp, op->dev.of_node);
|
||||||
if (ret)
|
if (ret)
|
||||||
dev_warn(&op->dev, "error registering MDIO bus\n");
|
dev_warn(&op->dev, "error registering MDIO bus\n");
|
||||||
|
|
Loading…
Add table
Reference in a new issue