aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/regulator/pwm-regulator.c
diff options
context:
space:
mode:
authorBoris Brezillon <boris.brezillon@free-electrons.com>2016-06-03 10:23:00 +0200
committerMark Brown <broonie@kernel.org>2016-06-03 11:42:48 +0100
commit830583004e615a4637eacc77866b84908414d7a0 (patch)
tree4f687ba04f22cf4e0b5b0bc22cf329b2a251d3f7 /drivers/regulator/pwm-regulator.c
parentLinux 4.7-rc1 (diff)
downloadwireguard-linux-830583004e615a4637eacc77866b84908414d7a0.tar.xz
wireguard-linux-830583004e615a4637eacc77866b84908414d7a0.zip
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>
Diffstat (limited to 'drivers/regulator/pwm-regulator.c')
-rw-r--r--drivers/regulator/pwm-regulator.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/regulator/pwm-regulator.c b/drivers/regulator/pwm-regulator.c
index fafa3488e960..ab3cc0235843 100644
--- a/drivers/regulator/pwm-regulator.c
+++ b/drivers/regulator/pwm-regulator.c
@@ -159,11 +159,6 @@ static int pwm_regulator_set_voltage(struct regulator_dev *rdev,
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;
/* Delay required by PWM regulator to settle to the new voltage */