diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2015-07-01 04:21:47 -0400 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2015-07-20 03:46:06 -0400 |
commit | 5c31252c4a86dc591c23f1a951edd52ad791ef0e (patch) | |
tree | 4a955e92027bbf95cd5fc9222245c0e4c8810a43 /drivers/pwm/core.c | |
parent | d770e558e21961ad6cfdf0ff7df0eb5d7d4f0754 (diff) |
pwm: Add the pwm_is_enabled() helper
Some PWM drivers are testing the PWMF_ENABLED flag. Create a helper
function to hide the logic behind enabled test. This will allow us to
smoothly move from the current approach to an atomic PWM update
approach.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm/core.c')
-rw-r--r-- | drivers/pwm/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pwm/core.c b/drivers/pwm/core.c index 3a7769fe53de..f7c11d2dec37 100644 --- a/drivers/pwm/core.c +++ b/drivers/pwm/core.c | |||
@@ -455,7 +455,7 @@ int pwm_set_polarity(struct pwm_device *pwm, enum pwm_polarity polarity) | |||
455 | if (!pwm->chip->ops->set_polarity) | 455 | if (!pwm->chip->ops->set_polarity) |
456 | return -ENOSYS; | 456 | return -ENOSYS; |
457 | 457 | ||
458 | if (test_bit(PWMF_ENABLED, &pwm->flags)) | 458 | if (pwm_is_enabled(pwm)) |
459 | return -EBUSY; | 459 | return -EBUSY; |
460 | 460 | ||
461 | err = pwm->chip->ops->set_polarity(pwm->chip, pwm, polarity); | 461 | err = pwm->chip->ops->set_polarity(pwm->chip, pwm, polarity); |
@@ -853,7 +853,7 @@ static void pwm_dbg_show(struct pwm_chip *chip, struct seq_file *s) | |||
853 | if (test_bit(PWMF_REQUESTED, &pwm->flags)) | 853 | if (test_bit(PWMF_REQUESTED, &pwm->flags)) |
854 | seq_puts(s, " requested"); | 854 | seq_puts(s, " requested"); |
855 | 855 | ||
856 | if (test_bit(PWMF_ENABLED, &pwm->flags)) | 856 | if (pwm_is_enabled(pwm)) |
857 | seq_puts(s, " enabled"); | 857 | seq_puts(s, " enabled"); |
858 | 858 | ||
859 | seq_puts(s, "\n"); | 859 | seq_puts(s, "\n"); |