diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2015-07-01 04:21:48 -0400 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2015-07-20 03:48:34 -0400 |
commit | a1cf42171a2e3c33cbc12bb037795caf0589149b (patch) | |
tree | ba54b84fff2198e8b0075373f4ade16979ec4a72 /include | |
parent | 5c31252c4a86dc591c23f1a951edd52ad791ef0e (diff) |
pwm: Constify PWM device where possible
The PWM argument is not modified in PWM property accessors, make it a
const argument so that the accessors can be used from sysfs.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pwm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/pwm.h b/include/linux/pwm.h index ec34f4d9a9ee..d8f691339a45 100644 --- a/include/linux/pwm.h +++ b/include/linux/pwm.h | |||
@@ -103,7 +103,7 @@ static inline void pwm_set_period(struct pwm_device *pwm, unsigned int period) | |||
103 | pwm->period = period; | 103 | pwm->period = period; |
104 | } | 104 | } |
105 | 105 | ||
106 | static inline unsigned int pwm_get_period(struct pwm_device *pwm) | 106 | static inline unsigned int pwm_get_period(const struct pwm_device *pwm) |
107 | { | 107 | { |
108 | return pwm ? pwm->period : 0; | 108 | return pwm ? pwm->period : 0; |
109 | } | 109 | } |
@@ -114,7 +114,7 @@ static inline void pwm_set_duty_cycle(struct pwm_device *pwm, unsigned int duty) | |||
114 | pwm->duty_cycle = duty; | 114 | pwm->duty_cycle = duty; |
115 | } | 115 | } |
116 | 116 | ||
117 | static inline unsigned int pwm_get_duty_cycle(struct pwm_device *pwm) | 117 | static inline unsigned int pwm_get_duty_cycle(const struct pwm_device *pwm) |
118 | { | 118 | { |
119 | return pwm ? pwm->duty_cycle : 0; | 119 | return pwm ? pwm->duty_cycle : 0; |
120 | } | 120 | } |