Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d0b3ed41 authored by Julia Lawall's avatar Julia Lawall Committed by Linus Walleij
Browse files

pinctrl: sh-pfc: add missing of_node_put

for_each_child_of_node performs an of_node_get on each iteration, so a
goto out of the loop requires an of_node_put.

A simplified version of the semantic patch that fixes this problem is as
follows (http://coccinelle.lip6.fr

):

// <smpl>
@@
local idexpression n;
expression e,e1;
identifier l;
@@

 for_each_child_of_node(e1,n) {
   ...
(
   of_node_put(n);
|
   e = n
|
   return n;
|
+  of_node_put(n);
?  goto l;
)
   ...
 }
l: ... when != n
// </smpl>

Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 2d98023c
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -273,9 +273,11 @@ static int sh_pfc_dt_node_to_map(struct pinctrl_dev *pctldev,
	for_each_child_of_node(np, child) {
	for_each_child_of_node(np, child) {
		ret = sh_pfc_dt_subnode_to_map(pctldev, child, map, num_maps,
		ret = sh_pfc_dt_subnode_to_map(pctldev, child, map, num_maps,
					       &index);
					       &index);
		if (ret < 0)
		if (ret < 0) {
			of_node_put(child);
			goto done;
			goto done;
		}
		}
	}


	/* If no mapping has been found in child nodes try the config node. */
	/* If no mapping has been found in child nodes try the config node. */
	if (*num_maps == 0) {
	if (*num_maps == 0) {