提交 a13a8218 编写于 作者: M Michal Simek

net: gem: Fix error path in zynq_gem_probe

Clean up error path in connection where priv->rxbuffers and priv->tx_bd are
allocated.
Signed-off-by: NMichal Simek <michal.simek@xilinx.com>
上级 ea4d4cb3
......@@ -708,14 +708,14 @@ static int zynq_gem_probe(struct udevice *dev)
ret = clk_get_by_name(dev, "tx_clk", &priv->tx_clk);
if (ret < 0) {
dev_err(dev, "failed to get tx_clock\n");
goto err1;
goto err2;
}
if (priv->clk_en_info & RXCLK_EN) {
ret = clk_get_by_name(dev, "rx_clk", &priv->rx_clk);
if (ret < 0) {
dev_err(dev, "failed to get rx_clock\n");
goto err1;
goto err2;
}
}
......@@ -737,9 +737,9 @@ static int zynq_gem_probe(struct udevice *dev)
err3:
mdio_unregister(priv->bus);
err2:
free(priv->rxbuffers);
err1:
free(priv->tx_bd);
err1:
free(priv->rxbuffers);
return ret;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册