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/sysfs.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/sysfs.c')
-rw-r--r-- | drivers/pwm/sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/sysfs.c b/drivers/pwm/sysfs.c index 4bd0c639e16d..eecf21d68108 100644 --- a/drivers/pwm/sysfs.c +++ b/drivers/pwm/sysfs.c | |||
@@ -97,7 +97,7 @@ static ssize_t pwm_enable_show(struct device *child, | |||
97 | char *buf) | 97 | char *buf) |
98 | { | 98 | { |
99 | const struct pwm_device *pwm = child_to_pwm_device(child); | 99 | const struct pwm_device *pwm = child_to_pwm_device(child); |
100 | int enabled = test_bit(PWMF_ENABLED, &pwm->flags); | 100 | int enabled = pwm_is_enabled(pwm); |
101 | 101 | ||
102 | return sprintf(buf, "%d\n", enabled); | 102 | return sprintf(buf, "%d\n", enabled); |
103 | } | 103 | } |