From 55fd1c442e747338604ef0075a4a888a40399ddc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Szymanski?= Date: Fri, 25 Feb 2022 14:48:54 +0100 Subject: [PATCH] cmd: pwm: fix typo 'eisable' -> 'disable' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed misspelled 'disable' in help text. Signed-off-by: Sébastien Szymanski --- cmd/pwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");