From: Sachin Kamat Date: Mon, 17 Feb 2014 09:03:31 +0000 (+0530) Subject: regulator: da9063: Add missing of_node_put X-Git-Tag: firefly_0821_release~176^2~4202^2~5^5~3 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2da8215ce2ca123d9d6a33e4fda3cd154192acc8;p=firefly-linux-kernel-4.4.55.git regulator: da9063: Add missing of_node_put Add of_node_put to decrement the ref count. Signed-off-by: Sachin Kamat Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/da9063-regulator.c b/drivers/regulator/da9063-regulator.c index cee856c43d88..f5d1ca9ab7dd 100644 --- a/drivers/regulator/da9063-regulator.c +++ b/drivers/regulator/da9063-regulator.c @@ -672,6 +672,7 @@ static struct da9063_regulators_pdata *da9063_parse_regulators_dt( num = of_regulator_match(&pdev->dev, node, da9063_matches, ARRAY_SIZE(da9063_matches)); + of_node_put(node); if (num < 0) { dev_err(&pdev->dev, "Failed to match regulators\n"); return ERR_PTR(-EINVAL);