diff options
author | Johan Hovold <johan@kernel.org> | 2017-11-11 17:29:28 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2017-11-14 15:53:29 -0800 |
commit | 43a51019cc8ff1b1cd2ba72e86563beb40d356fc (patch) | |
tree | 94e2f790643f7259fe3336a93f804e62e10343af /drivers/clk | |
parent | 1d96ad64c945e7c28b48ed93b7a900003dc1a6fa (diff) | |
download | talos-obmc-linux-43a51019cc8ff1b1cd2ba72e86563beb40d356fc.tar.gz talos-obmc-linux-43a51019cc8ff1b1cd2ba72e86563beb40d356fc.zip |
clk: qcom: common: fix legacy board-clock registration
Make sure to search only the child nodes of "/clocks", rather than the
whole device-tree depth-first starting at "/clocks" when determining
whether to register a fixed clock in the legacy board-clock registration
helper.
Fixes: ee15faffef11 ("clk: qcom: common: Add API to register board clocks backwards compatibly")
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/qcom/common.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/clk/qcom/common.c b/drivers/clk/qcom/common.c index b35564c0493f..b8064a336d46 100644 --- a/drivers/clk/qcom/common.c +++ b/drivers/clk/qcom/common.c @@ -133,8 +133,10 @@ static int _qcom_cc_register_board_clk(struct device *dev, const char *path, int ret; clocks_node = of_find_node_by_path("/clocks"); - if (clocks_node) - node = of_find_node_by_name(clocks_node, path); + if (clocks_node) { + node = of_get_child_by_name(clocks_node, path); + of_node_put(clocks_node); + } if (!node) { fixed = devm_kzalloc(dev, sizeof(*fixed), GFP_KERNEL); |