net: qcom/emac: Add missing of_node_put()
Add missing of_node_put() call for device node returned by of_parse_phandle(). Signed-off-by: YueHaibing <yuehaibing@huawei.com> Acked-by: Timur Tabi <timur@codeaurora.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9951912200
commit
bdf767cae3
|
@ -384,6 +384,7 @@ int emac_sgmii_config(struct platform_device *pdev, struct emac_adapter *adpt)
|
||||||
}
|
}
|
||||||
|
|
||||||
sgmii_pdev = of_find_device_by_node(np);
|
sgmii_pdev = of_find_device_by_node(np);
|
||||||
|
of_node_put(np);
|
||||||
if (!sgmii_pdev) {
|
if (!sgmii_pdev) {
|
||||||
dev_err(&pdev->dev, "invalid internal-phy property\n");
|
dev_err(&pdev->dev, "invalid internal-phy property\n");
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
Loading…
Reference in New Issue