diff options
author | Axel Lin <[email protected]> | 2012-01-12 14:57:09 +0800 |
---|---|---|
committer | Mark Brown <[email protected]> | 2012-01-20 12:01:26 +0000 |
commit | 047ec220a49f96ab0f8bd0bc574368e2cae8f1f7 (patch) | |
tree | 7fd37707f0857535432ccff10d487d5214ea6c28 | |
parent | 9767ec7fe8d9bf00e764f1d0ca0176988255be11 (diff) |
regulator: s5m8767: Add missing breaks
Signed-off-by: Axel Lin <[email protected]>
Acked-by: Sangbeom Kim <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | drivers/regulator/s5m8767.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/regulator/s5m8767.c b/drivers/regulator/s5m8767.c index b3d356f5e271..40610126ab28 100644 --- a/drivers/regulator/s5m8767.c +++ b/drivers/regulator/s5m8767.c @@ -742,15 +742,19 @@ static __devinit int s5m8767_pmic_probe(struct platform_device *pdev) case 15: s5m_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP, 0xc0, 0xf0); + break; case 25: s5m_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP, 0xd0, 0xf0); + break; case 50: s5m_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP, 0xe0, 0xf0); + break; case 100: s5m_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP, 0xf0, 0xf0); + break; default: s5m_reg_update(s5m8767->iodev, S5M8767_REG_DVSRAMP, 0x90, 0xf0); |