diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-24 14:13:47 +0530 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2013-10-24 10:51:33 +0200 |
commit | 702e304f198f631d746d2f383c54acc07d604700 (patch) | |
tree | 7d890382ae2c65a663fece8c237c3c9786962517 | |
parent | 73d4e2b82b4bb1571b1a7f97012c0db8a0faef42 (diff) | |
download | linux-exynos-702e304f198f631d746d2f383c54acc07d604700.tar.gz linux-exynos-702e304f198f631d746d2f383c54acc07d604700.tar.bz2 linux-exynos-702e304f198f631d746d2f383c54acc07d604700.zip |
Documentation/pwm: Fix trivial typos
Fixes some trivial typos to improve readability.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
-rw-r--r-- | Documentation/pwm.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/pwm.txt b/Documentation/pwm.txt index 1039b68fe9c6..93cb97974986 100644 --- a/Documentation/pwm.txt +++ b/Documentation/pwm.txt @@ -39,7 +39,7 @@ New users should use the pwm_get() function and pass to it the consumer device or a consumer name. pwm_put() is used to free the PWM device. Managed variants of these functions, devm_pwm_get() and devm_pwm_put(), also exist. -After being requested a PWM has to be configured using: +After being requested, a PWM has to be configured using: int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns); @@ -94,7 +94,7 @@ for new drivers to use the generic PWM framework. A new PWM controller/chip can be added using pwmchip_add() and removed again with pwmchip_remove(). pwmchip_add() takes a filled in struct pwm_chip as argument which provides a description of the PWM chip, the -number of PWM devices provider by the chip and the chip-specific +number of PWM devices provided by the chip and the chip-specific implementation of the supported PWM operations to the framework. Locking |