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/x86/exception.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/x86/exception.c')
-rw-r--r-- | cmd/x86/exception.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cmd/x86/exception.c b/cmd/x86/exception.c index 14b6bd6f493..02735494a3c 100644 --- a/cmd/x86/exception.c +++ b/cmd/x86/exception.c @@ -19,10 +19,9 @@ static struct cmd_tbl cmd_sub[] = { "", ""), }; -static char exception_help_text[] = +U_BOOT_LONGHELP(exception, "<ex>\n" " The following exceptions are available:\n" - " undefined - undefined instruction\n" - ; + " undefined - undefined instruction\n"); #include <exception.h> |