summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJohan Hovold <johan@kernel.org>2017-11-11 17:29:29 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-11-30 08:35:52 +0000
commit9b4080c28dabbf055e6eb7362a90de0a5e29f5c1 (patch)
tree6aeccbdd066f48e3128c751ad3b4ce4975d2c317 /drivers
parent26b3a4046639b949979fa071c761ef139f48c33d (diff)
downloadlinux-stable-9b4080c28dabbf055e6eb7362a90de0a5e29f5c1.tar.gz
linux-stable-9b4080c28dabbf055e6eb7362a90de0a5e29f5c1.tar.bz2
linux-stable-9b4080c28dabbf055e6eb7362a90de0a5e29f5c1.zip
clk: ti: dra7-atl-clock: fix child-node lookups
commit 33ec6dbc5a02677509d97fe36cd2105753f0f0ea upstream. Fix child node-lookup during probe, which ended up searching the whole device tree depth-first starting at parent rather than just matching on its children. Note that the original premature free of the parent node has already been fixed separately, but that fix was apparently never backported to stable. Fixes: 9ac33b0ce81f ("CLK: TI: Driver for DRA7 ATL (Audio Tracking Logic)") Fixes: 660e15519399 ("clk: ti: dra7-atl-clock: Fix of_node reference counting") Cc: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Johan Hovold <johan@kernel.org> Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clk/ti/clk-dra7-atl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/clk/ti/clk-dra7-atl.c b/drivers/clk/ti/clk-dra7-atl.c
index dd980c84dab7..d41b83239a3c 100644
--- a/drivers/clk/ti/clk-dra7-atl.c
+++ b/drivers/clk/ti/clk-dra7-atl.c
@@ -259,8 +259,7 @@ static int of_dra7_atl_clk_probe(struct platform_device *pdev)
/* Get configuration for the ATL instances */
snprintf(prop, sizeof(prop), "atl%u", i);
- of_node_get(node);
- cfg_node = of_find_node_by_name(node, prop);
+ cfg_node = of_get_child_by_name(node, prop);
if (cfg_node) {
ret = of_property_read_u32(cfg_node, "bws",
&cdesc->bws);