diff mbox

clk: qcom: Do not drop device node twice

Message ID 1486854296-23156-1-git-send-email-linux@roeck-us.net (mailing list archive)
State Not Applicable, archived
Delegated to: Andy Gross
Headers show

Commit Message

Guenter Roeck Feb. 11, 2017, 11:04 p.m. UTC
of_find_node_by_name() drops the reference to a passed device node.
It is not necessary to drop it again, and doing so may result in the
device node being released prematurely.

Cc: Rob Herring <robh@kernel.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
 drivers/clk/qcom/common.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Stephen Boyd Feb. 14, 2017, 8:06 p.m. UTC | #1
On 02/11, Guenter Roeck wrote:
> of_find_node_by_name() drops the reference to a passed device node.
> It is not necessary to drop it again, and doing so may result in the
> device node being released prematurely.
> 
> Cc: Rob Herring <robh@kernel.org>
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> ---

Applied to clk-next
diff mbox

Patch

diff --git a/drivers/clk/qcom/common.c b/drivers/clk/qcom/common.c
index cfab7b400381..03f9d316f969 100644
--- a/drivers/clk/qcom/common.c
+++ b/drivers/clk/qcom/common.c
@@ -145,7 +145,6 @@  static int _qcom_cc_register_board_clk(struct device *dev, const char *path,
 	clocks_node = of_find_node_by_path("/clocks");
 	if (clocks_node)
 		node = of_find_node_by_name(clocks_node, path);
-	of_node_put(clocks_node);
 
 	if (!node) {
 		fixed = devm_kzalloc(dev, sizeof(*fixed), GFP_KERNEL);