aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-02-17 04:03:32 -0500
committerMark Brown <broonie@linaro.org>2014-02-17 21:00:45 -0500
commitda0ee72d6df88e5cf6eb1a8f3bd02c3af3613337 (patch)
tree02ca3bb17314347abf9c3a8fc515baef3730f069
parent398a6616b5d9339043322f358d937688951c5e23 (diff)
regulator: max77686: Add missing of_node_put
Add of_node_put to decrement the ref count. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r--drivers/regulator/max77686.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/regulator/max77686.c b/drivers/regulator/max77686.c
index 0e725f6ed455..b411af00065d 100644
--- a/drivers/regulator/max77686.c
+++ b/drivers/regulator/max77686.c
@@ -412,6 +412,7 @@ static int max77686_pmic_dt_parse_pdata(struct platform_device *pdev,
412 if (!rdata) { 412 if (!rdata) {
413 dev_err(&pdev->dev, 413 dev_err(&pdev->dev,
414 "could not allocate memory for regulator data\n"); 414 "could not allocate memory for regulator data\n");
415 of_node_put(regulators_np);
415 return -ENOMEM; 416 return -ENOMEM;
416 } 417 }
417 418
@@ -425,6 +426,7 @@ static int max77686_pmic_dt_parse_pdata(struct platform_device *pdev,
425 } 426 }
426 427
427 pdata->regulators = rdata; 428 pdata->regulators = rdata;
429 of_node_put(regulators_np);
428 430
429 return 0; 431 return 0;
430} 432}