summaryrefslogtreecommitdiff
path: root/board/freescale/common/cmd_esbc_validate.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-06-19 10:09:44 -0600
committerTom Rini <trini@konsulko.com>2024-06-26 13:17:51 -0600
commitb85ecb276bee4ef828852e75e9932638b48042dd (patch)
tree3372664a87f685fd7275d4c68eb2e114dc4bedda /board/freescale/common/cmd_esbc_validate.c
parent4721d1cb8e45795c10fad252fdfc4951fefaeff2 (diff)
cmd: Make use of U_BOOT_LONGHELP when missing
After adding the U_BOOT_LONGHELP macro some new commands came in still that were not making use if it. Switch these cases over and in a few places add missing newlines as well. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/freescale/common/cmd_esbc_validate.c')
-rw-r--r--board/freescale/common/cmd_esbc_validate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/common/cmd_esbc_validate.c b/board/freescale/common/cmd_esbc_validate.c
index d4192e5ab52..3344653ba2d 100644
--- a/board/freescale/common/cmd_esbc_validate.c
+++ b/board/freescale/common/cmd_esbc_validate.c
@@ -63,14 +63,14 @@ static int do_esbc_validate(struct cmd_tbl *cmdtp, int flag, int argc,
}
/***************************************************/
-static char esbc_validate_help_text[] =
+U_BOOT_LONGHELP(esbc_validate,
"esbc_validate hdr_addr <hash_val> - Validates signature using\n"
" RSA verification\n"
" $hdr_addr Address of header of the image\n"
" to be validated.\n"
" $hash_val -Optional\n"
" It provides Hash of public/srk key to be\n"
- " used to verify signature.\n";
+ " used to verify signature.\n");
U_BOOT_CMD(
esbc_validate, 3, 0, do_esbc_validate,