diff mbox series

cmd: pwm: Remove additional pwm description

Message ID 222c7c8ac6ebe6ee7ddf1036fda14c8e9713b891.1628603415.git.michal.simek@xilinx.com
State Accepted
Commit a84d3b6c563445e9626d77f1504b707f054f77cf
Delegated to: Tom Rini
Headers show
Series cmd: pwm: Remove additional pwm description | expand

Commit Message

Michal Simek Aug. 10, 2021, 1:50 p.m. UTC
The first name is taken from command name that's why shouldn't be listed in
help. And commands shouldn't be listed with <> which means value but value
itself is command name.
Also add description for commands to make it clear what it does.

Before
pwm pwm <invert> <pwm_dev_num> <channel> <polarity>
pwm <config> <pwm_dev_num> <channel> <period_ns> <duty_ns>
...

After:
pwm invert <pwm_dev_num> <channel> <polarity> - invert polarity
pwm config <pwm_dev_num> <channel> <period_ns> <duty_ns> - config PWM
pwm enable <pwm_dev_num> <channel> - enable PWM output
pwm disable <pwm_dev_num> <channel> - disable PWM output

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---

 cmd/pwm.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

Comments

Simon Glass Aug. 12, 2021, 9:46 p.m. UTC | #1
On Tue, 10 Aug 2021 at 07:50, Michal Simek <michal.simek@xilinx.com> wrote:
>
> The first name is taken from command name that's why shouldn't be listed in
> help. And commands shouldn't be listed with <> which means value but value
> itself is command name.
> Also add description for commands to make it clear what it does.
>
> Before
> pwm pwm <invert> <pwm_dev_num> <channel> <polarity>
> pwm <config> <pwm_dev_num> <channel> <period_ns> <duty_ns>
> ...
>
> After:
> pwm invert <pwm_dev_num> <channel> <polarity> - invert polarity
> pwm config <pwm_dev_num> <channel> <period_ns> <duty_ns> - config PWM
> pwm enable <pwm_dev_num> <channel> - enable PWM output
> pwm disable <pwm_dev_num> <channel> - disable PWM output
>
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> ---
>
>  cmd/pwm.c | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>
Michal Simek Aug. 23, 2021, 6:51 a.m. UTC | #2
Ășt 10. 8. 2021 v 15:50 odesĂ­latel Michal Simek <michal.simek@xilinx.com> napsal:
>
> The first name is taken from command name that's why shouldn't be listed in
> help. And commands shouldn't be listed with <> which means value but value
> itself is command name.
> Also add description for commands to make it clear what it does.
>
> Before
> pwm pwm <invert> <pwm_dev_num> <channel> <polarity>
> pwm <config> <pwm_dev_num> <channel> <period_ns> <duty_ns>
> ...
>
> After:
> pwm invert <pwm_dev_num> <channel> <polarity> - invert polarity
> pwm config <pwm_dev_num> <channel> <period_ns> <duty_ns> - config PWM
> pwm enable <pwm_dev_num> <channel> - enable PWM output
> pwm disable <pwm_dev_num> <channel> - disable PWM output
>
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> ---
>
>  cmd/pwm.c | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/cmd/pwm.c b/cmd/pwm.c
> index 87d840a2b9bd..7947e61aeedb 100644
> --- a/cmd/pwm.c
> +++ b/cmd/pwm.c
> @@ -108,7 +108,8 @@ static int do_pwm(struct cmd_tbl *cmdtp, int flag, int argc,
>
>  U_BOOT_CMD(pwm, 6, 0, do_pwm,
>            "control pwm channels",
> -          "pwm <invert> <pwm_dev_num> <channel> <polarity>\n"
> -          "pwm <config> <pwm_dev_num> <channel> <period_ns> <duty_ns>\n"
> -          "pwm <enable/disable> <pwm_dev_num> <channel>\n"
> +          "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"
>            "Note: All input values are in decimal");
> --
> 2.32.0
>

Applied.
M
diff mbox series

Patch

diff --git a/cmd/pwm.c b/cmd/pwm.c
index 87d840a2b9bd..7947e61aeedb 100644
--- a/cmd/pwm.c
+++ b/cmd/pwm.c
@@ -108,7 +108,8 @@  static int do_pwm(struct cmd_tbl *cmdtp, int flag, int argc,
 
 U_BOOT_CMD(pwm, 6, 0, do_pwm,
 	   "control pwm channels",
-	   "pwm <invert> <pwm_dev_num> <channel> <polarity>\n"
-	   "pwm <config> <pwm_dev_num> <channel> <period_ns> <duty_ns>\n"
-	   "pwm <enable/disable> <pwm_dev_num> <channel>\n"
+	   "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"
 	   "Note: All input values are in decimal");