diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2021-04-06 10:30:36 +0300 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2021-04-09 15:17:03 +0300 |
commit | 1a7a6e8072ea0e4582de2da63a9088841fde798e (patch) | |
tree | c06c96d6547f620a8733a1134b1c01ab5207bcaf /include/linux/pwm.h | |
parent | 9666cec380d60808eb86d3be4caf84faeebe3081 (diff) | |
download | linux-1a7a6e8072ea0e4582de2da63a9088841fde798e.tar.xz |
pwm: Clarify which state pwm_get_state() returns
Given that lowlevel drivers usually cannot implement exactly what a
consumer requests with pwm_apply_state() there is some rounding
involved.
pwm_get_state() returns the setting that was requested most recently by
the consumer (opposed to what was actually implemented in hardware in
reply to the last request). Clarify this in the function kerneldoc.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'include/linux/pwm.h')
-rw-r--r-- | include/linux/pwm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/pwm.h b/include/linux/pwm.h index 8f4eefd129aa..5bb90af4997e 100644 --- a/include/linux/pwm.h +++ b/include/linux/pwm.h @@ -91,6 +91,11 @@ struct pwm_device { * pwm_get_state() - retrieve the current PWM state * @pwm: PWM device * @state: state to fill with the current PWM state + * + * The returned PWM state represents the state that was applied by a previous call to + * pwm_apply_state(). Drivers may have to slightly tweak that state before programming it to + * hardware. If pwm_apply_state() was never called, this returns either the current hardware + * state (if supported) or the default settings. */ static inline void pwm_get_state(const struct pwm_device *pwm, struct pwm_state *state) |