diff options
| author | Sébastien Szymanski <[email protected]> | 2022-02-25 14:48:54 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-03-04 15:20:06 -0500 |
| commit | 55fd1c442e747338604ef0075a4a888a40399ddc (patch) | |
| tree | 2dd2155d95984bfee45066d3e08798fa74fd818a /cmd | |
| parent | 39834ccdd43f492c61c0d8b4db55988b1f47a4dc (diff) | |
cmd: pwm: fix typo 'eisable' -> 'disable'
Fixed misspelled 'disable' in help text.
Signed-off-by: Sébastien Szymanski <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/pwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/pwm.c b/cmd/pwm.c index 7947e61aeed..7e82955239f 100644 --- a/cmd/pwm.c +++ b/cmd/pwm.c @@ -111,5 +111,5 @@ U_BOOT_CMD(pwm, 6, 0, do_pwm, "invert <pwm_dev_num> <channel> <polarity> - invert polarity\n" "pwm config <pwm_dev_num> <channel> <period_ns> <duty_ns> - config PWM\n" "pwm enable <pwm_dev_num> <channel> - enable PWM output\n" - "pwm disable <pwm_dev_num> <channel> - eisable PWM output\n" + "pwm disable <pwm_dev_num> <channel> - disable PWM output\n" "Note: All input values are in decimal"); |
