提交 d7cc3163 编写于 作者: S Srikanth Thokala 提交者: David S. Miller

net: axienet: Support phy-less mode of operation

This patch adds proper checks to handle the PHY-less case.
Signed-off-by: NSrikanth Thokala <sthokal@xilinx.com>
Signed-off-by: NMichal Simek <michal.simek@xilinx.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 f080a8c3
......@@ -940,10 +940,9 @@ static int axienet_open(struct net_device *ndev)
PHY_INTERFACE_MODE_RGMII_ID);
}
if (!lp->phy_dev) {
if (!lp->phy_dev)
dev_err(lp->dev, "of_phy_connect() failed\n");
return -ENODEV;
}
else
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->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);
if (ret)
dev_warn(&op->dev, "error registering MDIO bus\n");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册