aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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}