summaryrefslogtreecommitdiffstats
path: root/include/dt-bindings/clock/tegra210-car.h
diff options
context:
space:
mode:
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>2016-01-24 20:45:20 +0530
committerThierry Reding <treding@nvidia.com>2016-02-02 15:49:28 +0100
commit047d6d8401c2d8f59ae5f478486096c13147ddf7 (patch)
tree4862c9333cbae80a40aae1db21498507991dbc8e /include/dt-bindings/clock/tegra210-car.h
parent442f53fb1be44c00263ebb8e7c2eff19dd019037 (diff)
downloadlinux-stable-047d6d8401c2d8f59ae5f478486096c13147ddf7.tar.gz
linux-stable-047d6d8401c2d8f59ae5f478486096c13147ddf7.tar.bz2
linux-stable-047d6d8401c2d8f59ae5f478486096c13147ddf7.zip
clk: tegra: Add missing of_node_put()
for_each_child_of_node() performs an of_node_get() on each iteration, so before breaking 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 child; @@ for_each_child_of_node(root, child) { ... when != of_node_put(child) when != e = child ( return child; | + of_node_put(child); ? return ...; ) ... } // </smpl> Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'include/dt-bindings/clock/tegra210-car.h')
0 files changed, 0 insertions, 0 deletions