mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 23:36:39 +07:00
dwc_eth_qos: fix missing clk_disable_unprepare() on error in dwceqos_probe()
Fix missing clk_disable_unprepare() call before return from dwceqos_probe() in the error handling case of invalid fixed-link. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
379672deb2
commit
a6acf68932
@ -2877,7 +2877,7 @@ static int dwceqos_probe(struct platform_device *pdev)
|
||||
ret = of_phy_register_fixed_link(lp->pdev->dev.of_node);
|
||||
if (ret < 0) {
|
||||
dev_err(&pdev->dev, "invalid fixed-link");
|
||||
goto err_out_unregister_netdev;
|
||||
goto err_out_unregister_clk_notifier;
|
||||
}
|
||||
|
||||
lp->phy_node = of_node_get(lp->pdev->dev.of_node);
|
||||
|
Loading…
Reference in New Issue
Block a user