aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pwm/pwm-imx27.c
diff options
context:
space:
mode:
authorUwe Kleine-König <[email protected]>2020-02-10 21:22:39 +0000
committerThierry Reding <[email protected]>2020-03-30 14:55:25 +0000
commit4563654fddc05a572f889373ba22abc616b3aa1f (patch)
tree77820daca6dfcf597d715a6da914719fde492490 /drivers/pwm/pwm-imx27.c
parentpwm: imx27: Simplify helper function to enable and disable clocks (diff)
downloadkernel-4563654fddc05a572f889373ba22abc616b3aa1f.tar.gz
kernel-4563654fddc05a572f889373ba22abc616b3aa1f.zip
pwm: imx27: Don't disable clocks at device remove time
The .remove() callback is not supposed to modify hardware state. This is in the responsibility of the PWM consumer. After the PWM was disabled the clocks are off (apart from a bug that is fixed in the next patch), so unbinding the driver either stops the PWM (which it should not) or disables already disabled clocks yielding warnings from the clk core. So just drop the call to disable the clocks. (Which BTW was also in the wrong order because the call makes the PWM unfunctional and so should have come only after pwmchip_remove()). Fixes: 9f4c8f9607c3 ("pwm: imx: Add ipg clock operation") Signed-off-by: Uwe Kleine-König <[email protected]> Signed-off-by: Thierry Reding <[email protected]>
Diffstat (limited to 'drivers/pwm/pwm-imx27.c')
-rw-r--r--drivers/pwm/pwm-imx27.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/pwm/pwm-imx27.c b/drivers/pwm/pwm-imx27.c
index e04ae566bbf9..fb142813d455 100644
--- a/drivers/pwm/pwm-imx27.c
+++ b/drivers/pwm/pwm-imx27.c
@@ -358,8 +358,6 @@ static int pwm_imx27_remove(struct platform_device *pdev)
imx = platform_get_drvdata(pdev);
- pwm_imx27_clk_disable_unprepare(imx);
-
return pwmchip_remove(&imx->chip);
}