Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1578774 > unrolled thread

[PATCH 1/2] net: fs_enet: Fix an error handling path

Started byChristophe JAILLET <christophe.jaillet@wanadoo.fr>
First post2017-02-10 21:20 +0100
Last post2017-02-10 21:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/2] net: fs_enet: Fix an error handling path Christophe JAILLET <christophe.jaillet@wanadoo.fr> - 2017-02-10 21:20 +0100

#1578774 — [PATCH 1/2] net: fs_enet: Fix an error handling path

FromChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Date2017-02-10 21:20 +0100
Subject[PATCH 1/2] net: fs_enet: Fix an error handling path
Message-ID<t9pPH-8bb-13@gated-at.bofh.it>
'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>
---
 drivers/net/ethernet/freescale/fs_enet/fs_enet-main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/freescale/fs_enet/fs_enet-main.c b/drivers/net/ethernet/freescale/fs_enet/fs_enet-main.c
index 54e3ce9bd94c..5c6426756d11 100644
--- a/drivers/net/ethernet/freescale/fs_enet/fs_enet-main.c
+++ b/drivers/net/ethernet/freescale/fs_enet/fs_enet-main.c
@@ -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:
-- 
2.9.3

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web