diff options
author | Thierry Reding <thierry.reding@gmail.com> | 2016-07-25 10:23:39 -0400 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2016-07-25 10:23:39 -0400 |
commit | bd2686122d3b45db1398776921bd47fedfd6d6a5 (patch) | |
tree | a4c9e124eefb9da5434e39f628ee732a597d30c5 /drivers/pwm/sysfs.c | |
parent | 489babeae6b9386af25fe6dc3bc727a51ff5d962 (diff) | |
parent | 1a366fe9153f445e950a7a344932b7419aa83094 (diff) |
Merge branch 'for-4.8/capture' into for-next
Diffstat (limited to 'drivers/pwm/sysfs.c')
-rw-r--r-- | drivers/pwm/sysfs.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/pwm/sysfs.c b/drivers/pwm/sysfs.c index 01695d48dd54..18ed725594c3 100644 --- a/drivers/pwm/sysfs.c +++ b/drivers/pwm/sysfs.c | |||
@@ -208,16 +208,33 @@ static ssize_t polarity_store(struct device *child, | |||
208 | return ret ? : size; | 208 | return ret ? : size; |
209 | } | 209 | } |
210 | 210 | ||
211 | static ssize_t capture_show(struct device *child, | ||
212 | struct device_attribute *attr, | ||
213 | char *buf) | ||
214 | { | ||
215 | struct pwm_device *pwm = child_to_pwm_device(child); | ||
216 | struct pwm_capture result; | ||
217 | int ret; | ||
218 | |||
219 | ret = pwm_capture(pwm, &result, jiffies_to_msecs(HZ)); | ||
220 | if (ret) | ||
221 | return ret; | ||
222 | |||
223 | return sprintf(buf, "%u %u\n", result.period, result.duty_cycle); | ||
224 | } | ||
225 | |||
211 | static DEVICE_ATTR_RW(period); | 226 | static DEVICE_ATTR_RW(period); |
212 | static DEVICE_ATTR_RW(duty_cycle); | 227 | static DEVICE_ATTR_RW(duty_cycle); |
213 | static DEVICE_ATTR_RW(enable); | 228 | static DEVICE_ATTR_RW(enable); |
214 | static DEVICE_ATTR_RW(polarity); | 229 | static DEVICE_ATTR_RW(polarity); |
230 | static DEVICE_ATTR_RO(capture); | ||
215 | 231 | ||
216 | static struct attribute *pwm_attrs[] = { | 232 | static struct attribute *pwm_attrs[] = { |
217 | &dev_attr_period.attr, | 233 | &dev_attr_period.attr, |
218 | &dev_attr_duty_cycle.attr, | 234 | &dev_attr_duty_cycle.attr, |
219 | &dev_attr_enable.attr, | 235 | &dev_attr_enable.attr, |
220 | &dev_attr_polarity.attr, | 236 | &dev_attr_polarity.attr, |
237 | &dev_attr_capture.attr, | ||
221 | NULL | 238 | NULL |
222 | }; | 239 | }; |
223 | ATTRIBUTE_GROUPS(pwm); | 240 | ATTRIBUTE_GROUPS(pwm); |