diff options
author | Axel Lin <axel.lin@ingics.com> | 2017-11-06 22:30:41 -0500 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2017-11-15 05:02:06 -0500 |
commit | f83e2ae2606b3754a5b9dfe9dd792c453698df6c (patch) | |
tree | 6ee4a8547a171a6ed1556f9b5057b38a59df0bd1 /drivers/pwm/pwm-stm32-lp.c | |
parent | 424268c7494c2ae24c95565b9047bbf30309e88a (diff) |
pwm: stm32-lp: Remove pwm_is_enabled() check before calling pwm_disable()
The same checking is done by the implementation of pwm_disable().
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Fabrice Gasnier <fabrice.gasnier@st.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm/pwm-stm32-lp.c')
-rw-r--r-- | drivers/pwm/pwm-stm32-lp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/pwm/pwm-stm32-lp.c b/drivers/pwm/pwm-stm32-lp.c index 9793b296108f..1ac9e4384142 100644 --- a/drivers/pwm/pwm-stm32-lp.c +++ b/drivers/pwm/pwm-stm32-lp.c | |||
@@ -219,8 +219,7 @@ static int stm32_pwm_lp_remove(struct platform_device *pdev) | |||
219 | unsigned int i; | 219 | unsigned int i; |
220 | 220 | ||
221 | for (i = 0; i < priv->chip.npwm; i++) | 221 | for (i = 0; i < priv->chip.npwm; i++) |
222 | if (pwm_is_enabled(&priv->chip.pwms[i])) | 222 | pwm_disable(&priv->chip.pwms[i]); |
223 | pwm_disable(&priv->chip.pwms[i]); | ||
224 | 223 | ||
225 | return pwmchip_remove(&priv->chip); | 224 | return pwmchip_remove(&priv->chip); |
226 | } | 225 | } |