Commit e2897b82 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller

net: netcp: add missing of_node_put() in netcp_probe()

This node pointer is returned by of_get_child_by_name() with refcount
incremented in this function. of_node_put() on it before exitting this
function.

This is detected by Coccinelle semantic patch.
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f850b4a7
...@@ -2120,6 +2120,8 @@ static int netcp_probe(struct platform_device *pdev) ...@@ -2120,6 +2120,8 @@ static int netcp_probe(struct platform_device *pdev)
} }
} }
of_node_put(interfaces);
/* Add the device instance to the list */ /* Add the device instance to the list */
list_add_tail(&netcp_device->device_list, &netcp_devices); list_add_tail(&netcp_device->device_list, &netcp_devices);
...@@ -2132,6 +2134,8 @@ static int netcp_probe(struct platform_device *pdev) ...@@ -2132,6 +2134,8 @@ static int netcp_probe(struct platform_device *pdev)
netcp_delete_interface(netcp_device, netcp_intf->ndev); netcp_delete_interface(netcp_device, netcp_intf->ndev);
} }
of_node_put(interfaces);
probe_quit: probe_quit:
pm_runtime_put_sync(&pdev->dev); pm_runtime_put_sync(&pdev->dev);
pm_runtime_disable(&pdev->dev); pm_runtime_disable(&pdev->dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment