regulator: Modify ramp_delay value for s5m8767a
authorSangbeom Kim <sbkim73@samsung.com>
Wed, 13 Jun 2012 08:27:54 +0000 (17:27 +0900)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Mon, 25 Jun 2012 09:12:30 +0000 (10:12 +0100)
As s5m8767a is revisioned, ramp_delay register is changed.
5mV/uS, 10mV/uS, 25mV/uS, 50mV/uS, 100mV/uS ramp delay can be selected.

Signed-off-by: Sangbeom Kim <sbkim73@samsung.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/regulator/s5m8767.c

index 22642c3ccf76cebf3e200006278e591599472614..533bde68e4b70616d17155838afd18371c143fb1 100644 (file)
@@ -720,9 +720,13 @@ static __devinit int s5m8767_pmic_probe(struct platform_device *pdev)
        if (s5m8767->buck2_ramp || s5m8767->buck3_ramp
                || s5m8767->buck4_ramp) {
                switch (s5m8767->ramp_delay) {
-               case 15:
+               case 5:
                        s5m_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
-                                       0xc0, 0xf0);
+                                       0x40, 0xf0);
+                       break;
+               case 10:
+                       s5m_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
+                                       0x90, 0xf0);
                        break;
                case 25:
                        s5m_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP,
This page took 0.026769 seconds and 5 git commands to generate.