1
0
Fork 0

net: ethernet: mediatek: add the missing of_node_put() after node is used done

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>
steinar/wifi_calib_4_9_kernel
sean.wang@mediatek.com 2016-08-13 19:16:19 +08:00 committed by David S. Miller
parent d7005652cd
commit e8c2993a4c
1 changed files with 2 additions and 0 deletions

View 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;
}