regulator: palmas: Call palmas_ldo_[read|write] in palmas_ldo_init
Current code uses wrong calls palmas_smps_[read|write] in palmas_ldo_init(), should be palmas_ldo_[read|write] instead. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
12565b166d
commit
2735daeb16
1 changed files with 2 additions and 2 deletions
|
@ -589,7 +589,7 @@ static int palmas_ldo_init(struct palmas *palmas, int id,
|
||||||
|
|
||||||
addr = palmas_regs_info[id].ctrl_addr;
|
addr = palmas_regs_info[id].ctrl_addr;
|
||||||
|
|
||||||
ret = palmas_smps_read(palmas, addr, ®);
|
ret = palmas_ldo_read(palmas, addr, ®);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -599,7 +599,7 @@ static int palmas_ldo_init(struct palmas *palmas, int id,
|
||||||
if (reg_init->mode_sleep)
|
if (reg_init->mode_sleep)
|
||||||
reg |= PALMAS_LDO1_CTRL_MODE_SLEEP;
|
reg |= PALMAS_LDO1_CTRL_MODE_SLEEP;
|
||||||
|
|
||||||
ret = palmas_smps_write(palmas, addr, reg);
|
ret = palmas_ldo_write(palmas, addr, reg);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue