diff options
author | Michal Simek <michal.simek@amd.com> | 2023-01-17 11:44:45 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-01-18 12:46:13 -0500 |
commit | 5c006e7cb345d2e9c44de143a88c2cd37d5a9cc9 (patch) | |
tree | d33bbc7f210ed0739c9b90320be3103ebca6905b | |
parent | 4c2e23fe86fb5aef60f47d4737295b8ca2ed9060 (diff) |
cmd: event: Remove additional event description
The first name is taken from command name that's why shouldn't be listed in
help. The similar change was also done by commit a84d3b6c5634 ("cmd: pwm:
Remove additional pwm description").
Also remove additional spaces in help message.
Before:
event event list - list event spies
After:
event list - list event spies
Signed-off-by: Michal Simek <michal.simek@amd.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | cmd/event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/event.c b/cmd/event.c index 9cac202353..b4b779ffac 100644 --- a/cmd/event.c +++ b/cmd/event.c @@ -20,7 +20,7 @@ static int do_event_list(struct cmd_tbl *cmdtp, int flag, int argc, #ifdef CONFIG_SYS_LONGHELP static char event_help_text[] = - "event list - list event spies"; + "list - list event spies"; #endif U_BOOT_CMD_WITH_SUBCMDS(event, "Events", event_help_text, |