mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
regulator: pwm: Drop unneeded pwm_enable() call
Now that the PWM regulator driver implements the ->enable/disable() hooks we can remove the pwm_enable() call from pwm_regulator_set_voltage(). Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
1a695a905c
commit
830583004e
@ -159,11 +159,6 @@ static int pwm_regulator_set_voltage(struct regulator_dev *rdev,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = pwm_enable(drvdata->pwm);
|
|
||||||
if (ret) {
|
|
||||||
dev_err(&rdev->dev, "Failed to enable PWM: %d\n", ret);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
drvdata->volt_uV = min_uV;
|
drvdata->volt_uV = min_uV;
|
||||||
|
|
||||||
/* Delay required by PWM regulator to settle to the new voltage */
|
/* Delay required by PWM regulator to settle to the new voltage */
|
||||||
|
Loading…
Reference in New Issue
Block a user