diff options
author | Amitoj Kaur Chawla <amitoj1606@gmail.com> | 2016-01-25 22:53:07 +0530 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2016-06-14 11:39:39 +0200 |
commit | 55bb1d8355ce91662dc8760f24f578db5a595819 (patch) | |
tree | b18b1cfb4219ea751a0cbceb810be639493fce74 /kernel/futex_compat.c | |
parent | d1122e4b7639941305166628613a42fdf6e16296 (diff) | |
download | kernel_replicant_linux-55bb1d8355ce91662dc8760f24f578db5a595819.tar.gz kernel_replicant_linux-55bb1d8355ce91662dc8760f24f578db5a595819.tar.bz2 kernel_replicant_linux-55bb1d8355ce91662dc8760f24f578db5a595819.zip |
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>
Diffstat (limited to 'kernel/futex_compat.c')
0 files changed, 0 insertions, 0 deletions