diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-30 22:06:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-30 22:06:25 -0400 |
commit | bbeb0af25f493261c15ceee176c99b7fd6fd5479 (patch) | |
tree | 7aad604d29719619573d16715e6cc5209de3eb46 | |
parent | 6df419e45d71b8d9a0de8e92a1212bbea460f0e0 (diff) | |
parent | 938e05bf131334804e08ec4fcd381edfd2d699f6 (diff) |
Merge tag 'mfd-for-linus-3.6-1' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6
Pull MFD fix from Samuel Ortiz:
"This one fixes an s5m8767 regulator build breakage due to a merge
conflict caused by the MFD s5m API changes."
* tag 'mfd-for-linus-3.6-1' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6:
regulator: Fix an s5m8767 build failure
-rw-r--r-- | drivers/regulator/s5m8767.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/regulator/s5m8767.c b/drivers/regulator/s5m8767.c index 5a0d18a7aa2a..abe64a32aedf 100644 --- a/drivers/regulator/s5m8767.c +++ b/drivers/regulator/s5m8767.c | |||
@@ -572,21 +572,21 @@ static __devinit int s5m8767_pmic_probe(struct platform_device *pdev) | |||
572 | pdata->buck2_init + | 572 | pdata->buck2_init + |
573 | buck_voltage_val2.step); | 573 | buck_voltage_val2.step); |
574 | 574 | ||
575 | s5m_reg_write(s5m8767->iodev, S5M8767_REG_BUCK2DVS2, buck_init); | 575 | sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK2DVS2, buck_init); |
576 | 576 | ||
577 | buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2, | 577 | buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2, |
578 | pdata->buck3_init, | 578 | pdata->buck3_init, |
579 | pdata->buck3_init + | 579 | pdata->buck3_init + |
580 | buck_voltage_val2.step); | 580 | buck_voltage_val2.step); |
581 | 581 | ||
582 | s5m_reg_write(s5m8767->iodev, S5M8767_REG_BUCK3DVS2, buck_init); | 582 | sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK3DVS2, buck_init); |
583 | 583 | ||
584 | buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2, | 584 | buck_init = s5m8767_convert_voltage_to_sel(&buck_voltage_val2, |
585 | pdata->buck4_init, | 585 | pdata->buck4_init, |
586 | pdata->buck4_init + | 586 | pdata->buck4_init + |
587 | buck_voltage_val2.step); | 587 | buck_voltage_val2.step); |
588 | 588 | ||
589 | s5m_reg_write(s5m8767->iodev, S5M8767_REG_BUCK4DVS2, buck_init); | 589 | sec_reg_write(s5m8767->iodev, S5M8767_REG_BUCK4DVS2, buck_init); |
590 | 590 | ||
591 | for (i = 0; i < 8; i++) { | 591 | for (i = 0; i < 8; i++) { |
592 | if (s5m8767->buck2_gpiodvs) { | 592 | if (s5m8767->buck2_gpiodvs) { |