bus: vexpress-config: Add missing of_node_put
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Fri, 22 Jan 2016 18:08:38 +0000 (23:38 +0530)
committerSudeep Holla <sudeep.holla@arm.com>
Mon, 1 Feb 2016 09:59:58 +0000 (09:59 +0000)
commitd99875eebfebec5432981273fac0547f3e34f2d7
treef6c63bbad0821b3dc0d4ddceb4a7a1fce2a8b354
parent36f90b0a2ddd60823fe193a85e60ff1906c2a9b3
bus: vexpress-config: Add missing of_node_put

for_each_compatible_node performs an of_node_get on each iteration, so
to break out of the loop an of_node_put is required.

Found using Coccinelle. The semantic patch used for this is as follows:

// <smpl>
@@
expression e;
local idexpression n;
@@

 for_each_compatible_node(n, ...) {
   ... when != of_node_put(n)
       when != e = n
(
   return n;
+  of_node_put(n);
?  return ...;
)
   ...
 }
// </smpl>

Acked-by: Liviu Dudau <Liviu.Dudau@arm.com>
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
drivers/bus/vexpress-config.c
This page took 0.079936 seconds and 5 git commands to generate.