1
0
Fork 0
alistair23-linux/drivers/memory/tegra
Amitoj Kaur Chawla 55bb1d8355 memory: tegra: mc: Add missing of_node_put()
for_each_child_of_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_child_of_node(..., n) {
   ... when != of_node_put(n)
       when != e = n
(
   return n;
|
+  of_node_put(n);
?  return ...;
)
   ...
 }
// </smpl>

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
2016-06-14 11:39:39 +02:00
..
Kconfig memory: tegra: Add EMC (external memory controller) driver 2015-05-05 11:12:17 +02:00
Makefile memory: tegra: Add Tegra210 support 2015-08-13 16:07:52 +02:00
mc.c memory: tegra: mc: Add missing of_node_put() 2016-06-14 11:39:39 +02:00
mc.h memory: tegra: Add Tegra210 support 2015-08-13 16:07:52 +02:00
tegra30.c IOMMU Updates for Linux v4.3 2015-09-08 17:22:35 -07:00
tegra114.c IOMMU Updates for Linux v4.3 2015-09-08 17:22:35 -07:00
tegra124-emc.c memory: tegra: Delete unneeded of_node_put() 2016-06-14 11:39:39 +02:00
tegra124.c memory/tegra: Add number of TLB lines for Tegra124 2015-12-14 16:11:35 +01:00
tegra210.c memory: tegra: Add Tegra210 support 2015-08-13 16:07:52 +02:00