power/reset: at91-reset: add missing of_node_put
authorJulia Lawall <Julia.Lawall@lip6.fr>
Wed, 18 Nov 2015 22:04:14 +0000 (23:04 +0100)
committerSebastian Reichel <sre@kernel.org>
Sat, 5 Dec 2015 01:06:49 +0000 (02:06 +0100)
commitc4c0edfbf875a5ecb38a4aa65e2bdb87739e81d6
treec701255e1ed8b17fdfb97e3132b19502edad713c
parent79fbdb66cf6ab4e26e7bcb8399ac02cd81fc5d6d
power/reset: at91-reset: add missing of_node_put

for_each_matching_node performs an of_node_get on each iteration, so
a break 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>
@@
expression e,e1;
local idexpression np;
@@

 for_each_matching_node(np, e1) {
   ... when != of_node_put(np)
       when != e = np
(
   return np;
|
+  of_node_put(np);
?  return ...;
)
   ...
 }
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
drivers/power/reset/at91-reset.c