]> git.baikalelectronics.ru Git - uboot.git/commitdiff
cmd: fdt: Align checksign parameter names in help text
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Thu, 2 Mar 2023 03:08:20 +0000 (04:08 +0100)
committerSimon Glass <sjg@chromium.org>
Thu, 9 Mar 2023 16:50:47 +0000 (08:50 -0800)
The help text references 'addr' as an optional key start address,
but the explanation references the same as 'start', make sure they
both read as 'addr'. Also update the abbreviated 'addr' in the
explanation to 'address'.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
cmd/fdt.c

index f257bee864377162ddc8aaf42ba4713a41953c8c..279dad9fe115f85fc0ad31c6563da579d0740573 100644 (file)
--- a/cmd/fdt.c
+++ b/cmd/fdt.c
@@ -1138,8 +1138,8 @@ static char fdt_help_text[] =
        "                                        <start>/<size> - initrd start addr/size\n"
 #if defined(CONFIG_FIT_SIGNATURE)
        "fdt checksign [<addr>]              - check FIT signature\n"
-       "                                        <start> - addr of key blob\n"
-       "                                                  default gd->fdt_blob\n"
+       "                                      <addr> - address of key blob\n"
+       "                                               default gd->fdt_blob\n"
 #endif
        "NOTE: Dereference aliases by omitting the leading '/', "
                "e.g. fdt print ethernet0.";