mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 14:14:01 +08:00
regulator: palmas: Don't update tstep register for SMPS3 and SMPS7
SMPS3 and SMPS7 do not have tstep_addr setting, so current code actually writes 0 to smps12_ctl (offset is 0) register when set_ramp_delay callback is called for SMPS3 and SMPS7. Signed-off-by: Axel Lin <axel.lin@ingics.com> Acked-by: Laxman Dewangan <ldewangan@nvidia.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
3df4a81c46
commit
f22c2bae2e
@ -437,6 +437,13 @@ static int palmas_smps_set_ramp_delay(struct regulator_dev *rdev,
|
||||
unsigned int addr = palmas_regs_info[id].tstep_addr;
|
||||
int ret;
|
||||
|
||||
/* SMPS3 and SMPS7 do not have tstep_addr setting */
|
||||
switch (id) {
|
||||
case PALMAS_REG_SMPS3:
|
||||
case PALMAS_REG_SMPS7:
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (ramp_delay <= 0)
|
||||
reg = 0;
|
||||
else if (ramp_delay < 2500)
|
||||
|
Loading…
Reference in New Issue
Block a user