aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/s5m8767.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/regulator/s5m8767.c')
-rw-r--r--drivers/regulator/s5m8767.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/regulator/s5m8767.c b/drivers/regulator/s5m8767.c
index c24448bc43cf..cb6cdb3c0bdc 100644
--- a/drivers/regulator/s5m8767.c
+++ b/drivers/regulator/s5m8767.c
@@ -640,6 +640,22 @@ static int s5m8767_pmic_dt_parse_pdata(struct platform_device *pdev,
640 return -EINVAL; 640 return -EINVAL;
641 } 641 }
642 642
643 if (of_get_property(pmic_np, "s5m8767,pmic-buck2-ramp-enable", NULL))
644 pdata->buck2_ramp_enable = true;
645
646 if (of_get_property(pmic_np, "s5m8767,pmic-buck3-ramp-enable", NULL))
647 pdata->buck3_ramp_enable = true;
648
649 if (of_get_property(pmic_np, "s5m8767,pmic-buck4-ramp-enable", NULL))
650 pdata->buck4_ramp_enable = true;
651
652 if (pdata->buck2_ramp_enable || pdata->buck3_ramp_enable
653 || pdata->buck4_ramp_enable) {
654 if (of_property_read_u32(pmic_np, "s5m8767,pmic-buck-ramp-delay",
655 &pdata->buck_ramp_delay))
656 pdata->buck_ramp_delay = 0;
657 }
658
643 return 0; 659 return 0;
644} 660}
645#else 661#else