From: Marek Vasut Date: Thu, 2 Mar 2023 03:08:20 +0000 (+0100) Subject: cmd: fdt: Align checksign parameter names in help text X-Git-Tag: v2023.07~72^2~36^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3300a6027772105ed4f4dd34001bd532ee21de8c;p=platform%2Fkernel%2Fu-boot.git cmd: fdt: Align checksign parameter names in help text 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 Reviewed-by: Simon Glass --- diff --git a/cmd/fdt.c b/cmd/fdt.c index f257bee..279dad9 100644 --- a/cmd/fdt.c +++ b/cmd/fdt.c @@ -1138,8 +1138,8 @@ static char fdt_help_text[] = " / - initrd start addr/size\n" #if defined(CONFIG_FIT_SIGNATURE) "fdt checksign [] - check FIT signature\n" - " - addr of key blob\n" - " default gd->fdt_blob\n" + " - address of key blob\n" + " default gd->fdt_blob\n" #endif "NOTE: Dereference aliases by omitting the leading '/', " "e.g. fdt print ethernet0.";