Skip to content

Commit 28b170e

Browse files
JuliaLawallrobherring
authored andcommitted
OF: properties: add missing of_node_put
Add an of_node_put when the result of of_graph_get_remote_port_parent is not available. The semantic match that finds this problem is as follows (http://coccinelle.lip6.fr): // <smpl> @r exists@ local idexpression e; expression x; @@ e = of_graph_get_remote_port_parent(...); ... when != x = e when != true e == NULL when != of_node_put(e) when != of_fwnode_handle(e) ( return e; | *return ...; ) // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Cc: stable@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
1 parent 8217724 commit 28b170e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

drivers/of/property.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,7 @@ struct device_node *of_graph_get_remote_node(const struct device_node *node,
806806

807807
if (!of_device_is_available(remote)) {
808808
pr_debug("not available for remote node\n");
809+
of_node_put(remote);
809810
return NULL;
810811
}
811812

0 commit comments

Comments
 (0)