mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 17:46:47 +07:00
net: fs_enet: Fix an error handling path
'of_node_put(fpi->phy_node)' should also be called if we branch to 'out_deregister_fixed_link' error handling path. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c3d8103bc0
commit
1f8f1e89e0
@ -1045,10 +1045,10 @@ static int fs_enet_probe(struct platform_device *ofdev)
|
||||
out_free_dev:
|
||||
free_netdev(ndev);
|
||||
out_put:
|
||||
of_node_put(fpi->phy_node);
|
||||
if (fpi->clk_per)
|
||||
clk_disable_unprepare(fpi->clk_per);
|
||||
out_deregister_fixed_link:
|
||||
of_node_put(fpi->phy_node);
|
||||
if (of_phy_is_fixed_link(ofdev->dev.of_node))
|
||||
of_phy_deregister_fixed_link(ofdev->dev.of_node);
|
||||
out_free_fpi:
|
||||
|
Loading…
Reference in New Issue
Block a user