aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pwm/pwm-rcar.c
diff options
context:
space:
mode:
authorYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>2019-01-09 03:19:06 -0500
committerThierry Reding <thierry.reding@gmail.com>2019-03-04 06:14:06 -0500
commit87f50ce981b8ac33734e3b5847f7f0bbfcad856b (patch)
treee48ae9d37bafe8c1e1152955e481341d4f077fb2 /drivers/pwm/pwm-rcar.c
parent7f68ce8287d3b25a70455aec18ff678a908d49ee (diff)
pwm: rcar: Use "atomic" API on rcar_pwm_resume()
To remove legacy API related functions in the future, this patch uses "atomic" related function instead. No change in behavior. Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm/pwm-rcar.c')
-rw-r--r--drivers/pwm/pwm-rcar.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/pwm/pwm-rcar.c b/drivers/pwm/pwm-rcar.c
index e3ab663ff3a7..652a937ef8b0 100644
--- a/drivers/pwm/pwm-rcar.c
+++ b/drivers/pwm/pwm-rcar.c
@@ -316,18 +316,16 @@ static int rcar_pwm_suspend(struct device *dev)
316static int rcar_pwm_resume(struct device *dev) 316static int rcar_pwm_resume(struct device *dev)
317{ 317{
318 struct pwm_device *pwm = rcar_pwm_dev_to_pwm_dev(dev); 318 struct pwm_device *pwm = rcar_pwm_dev_to_pwm_dev(dev);
319 struct pwm_state state;
319 320
320 if (!test_bit(PWMF_REQUESTED, &pwm->flags)) 321 if (!test_bit(PWMF_REQUESTED, &pwm->flags))
321 return 0; 322 return 0;
322 323
323 pm_runtime_get_sync(dev); 324 pm_runtime_get_sync(dev);
324 325
325 rcar_pwm_config(pwm->chip, pwm, pwm->state.duty_cycle, 326 pwm_get_state(pwm, &state);
326 pwm->state.period);
327 if (pwm_is_enabled(pwm))
328 rcar_pwm_enable(pwm->chip, pwm);
329 327
330 return 0; 328 return rcar_pwm_apply(pwm->chip, pwm, &state);
331} 329}
332#endif /* CONFIG_PM_SLEEP */ 330#endif /* CONFIG_PM_SLEEP */
333static SIMPLE_DEV_PM_OPS(rcar_pwm_pm_ops, rcar_pwm_suspend, rcar_pwm_resume); 331static SIMPLE_DEV_PM_OPS(rcar_pwm_pm_ops, rcar_pwm_suspend, rcar_pwm_resume);