From: Peter Chen Date: Mon, 1 Aug 2016 07:02:29 +0000 (+0800) Subject: ethernet: altera: add missing of_node_put X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5d97222ae0f578a91166804cb62dbf4a5c9202db;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git ethernet: altera: add missing of_node_put of_node_put needs to be called when the device node which is got from of_parse_phandle (or of_node_get) has finished using. Signed-off-by: Peter Chen Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/altera/altera_tse_main.c b/drivers/net/ethernet/altera/altera_tse_main.c index 49025e99fb0e..bda31f308cc2 100644 --- a/drivers/net/ethernet/altera/altera_tse_main.c +++ b/drivers/net/ethernet/altera/altera_tse_main.c @@ -815,6 +815,7 @@ static int init_phy(struct net_device *dev) phydev = of_phy_connect(dev, phynode, &altera_tse_adjust_link, 0, priv->phy_iface); } + of_node_put(phynode); if (!phydev) { netdev_err(dev, "Could not find the PHY\n");