net: ethernet: mediatek: add the missing of_node_put() after node is used done
authorsean.wang@mediatek.com <sean.wang@mediatek.com>
Sat, 13 Aug 2016 11:16:19 +0000 (19:16 +0800)
committerDavid S. Miller <davem@davemloft.net>
Sat, 13 Aug 2016 21:58:38 +0000 (14:58 -0700)
This patch adds the missing of_node_put() after finishing the usage
of of_parse_phandle() or of_node_get() used by fixed_phy.

Signed-off-by: Sean Wang <sean.wang@mediatek.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mediatek/mtk_eth_soc.c

index fe17f8c..0030361 100644 (file)
@@ -269,6 +269,8 @@ static int mtk_phy_connect(struct mtk_mac *mac)
                                    ADVERTISED_Autoneg;
        phy_start_aneg(mac->phy_dev);
 
+       of_node_put(np);
+
        return 0;
 }