diff options
author | Tom Rini <trini@konsulko.com> | 2024-06-19 10:09:44 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-06-26 13:17:51 -0600 |
commit | b85ecb276bee4ef828852e75e9932638b48042dd (patch) | |
tree | 3372664a87f685fd7275d4c68eb2e114dc4bedda /cmd/blob.c | |
parent | 4721d1cb8e45795c10fad252fdfc4951fefaeff2 (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 'cmd/blob.c')
-rw-r--r-- | cmd/blob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/blob.c b/cmd/blob.c index a3c1dc49224..b1c72e3f440 100644 --- a/cmd/blob.c +++ b/cmd/blob.c @@ -99,7 +99,7 @@ static int do_blob(struct cmd_tbl *cmdtp, int flag, int argc, } /***************************************************/ -static char blob_help_text[] = +U_BOOT_LONGHELP(blob, "enc src dst len km - Encapsulate and create blob of data\n" " $len bytes long at address $src and\n" " store the result at address $dst.\n" @@ -115,7 +115,7 @@ static char blob_help_text[] = " modifier is stored.\n" " The modifier is required for generation\n" " /use as key for cryptographic operation.\n" - " Key modifier should be 16 byte long.\n"; + " Key modifier should be 16 byte long.\n"); U_BOOT_CMD( blob, 6, 1, do_blob, |