From: Sébastien Szymanski Date: Fri, 25 Feb 2022 13:48:54 +0000 (+0100) Subject: cmd: pwm: fix typo 'eisable' -> 'disable' X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=55fd1c442e747338604ef0075a4a888a40399ddc;p=u-boot.git cmd: pwm: fix typo 'eisable' -> 'disable' Fixed misspelled 'disable' in help text. Signed-off-by: Sébastien Szymanski --- diff --git a/cmd/pwm.c b/cmd/pwm.c index 7947e61aee..7e82955239 100644 --- a/cmd/pwm.c +++ b/cmd/pwm.c @@ -111,5 +111,5 @@ U_BOOT_CMD(pwm, 6, 0, do_pwm, "invert - invert polarity\n" "pwm config - config PWM\n" "pwm enable - enable PWM output\n" - "pwm disable - eisable PWM output\n" + "pwm disable - disable PWM output\n" "Note: All input values are in decimal");