diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-06-03 11:23:00 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-06-03 13:42:48 +0300 |
commit | 830583004e615a4637eacc77866b84908414d7a0 (patch) | |
tree | 4f687ba04f22cf4e0b5b0bc22cf329b2a251d3f7 /drivers/regulator | |
parent | 1a695a905c18548062509178b98bc91e67510864 (diff) | |
download | linux-830583004e615a4637eacc77866b84908414d7a0.tar.xz |
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')
-rw-r--r-- | drivers/regulator/pwm-regulator.c | 5 |
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 */ |