diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-17 14:33:32 +0530 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-18 11:00:45 +0900 |
commit | da0ee72d6df88e5cf6eb1a8f3bd02c3af3613337 (patch) | |
tree | 02ca3bb17314347abf9c3a8fc515baef3730f069 /drivers/regulator/max77686.c | |
parent | 398a6616b5d9339043322f358d937688951c5e23 (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>
Diffstat (limited to 'drivers/regulator/max77686.c')
-rw-r--r-- | drivers/regulator/max77686.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/regulator/max77686.c b/drivers/regulator/max77686.c index 0e725f6ed45..b411af00065 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, if (!rdata) { dev_err(&pdev->dev, "could not allocate memory for regulator data\n"); + of_node_put(regulators_np); return -ENOMEM; } @@ -425,6 +426,7 @@ static int max77686_pmic_dt_parse_pdata(struct platform_device *pdev, } pdata->regulators = rdata; + of_node_put(regulators_np); return 0; } |