Commit 702e304f198f631d746d2f383c54acc07d604700

Authored by Sachin Kamat
Committed by Thierry Reding
1 parent 73d4e2b82b

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>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

Documentation/pwm.txt
... ... @@ -39,7 +39,7 @@
39 39 device or a consumer name. pwm_put() is used to free the PWM device. Managed
40 40 variants of these functions, devm_pwm_get() and devm_pwm_put(), also exist.
41 41  
42   -After being requested a PWM has to be configured using:
  42 +After being requested, a PWM has to be configured using:
43 43  
44 44 int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns);
45 45  
... ... @@ -94,7 +94,7 @@
94 94 A new PWM controller/chip can be added using pwmchip_add() and removed
95 95 again with pwmchip_remove(). pwmchip_add() takes a filled in struct
96 96 pwm_chip as argument which provides a description of the PWM chip, the
97   -number of PWM devices provider by the chip and the chip-specific
  97 +number of PWM devices provided by the chip and the chip-specific
98 98 implementation of the supported PWM operations to the framework.
99 99  
100 100 Locking