Add empty usage strings back in. (#526)

Comment on #521 pointed out that they're required.
This commit is contained in:
Tim Newsome 2020-09-10 13:53:27 -07:00 committed by GitHub
parent 48e40f3513
commit 2bde4a918a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -2715,6 +2715,7 @@ static const struct command_registration riscv_exec_command_handlers[] = {
{
.name = "test_compliance",
.handler = riscv_test_compliance,
.usage = "",
.mode = COMMAND_EXEC,
.help = "Runs a basic compliance test suite against the RISC-V Debug Spec."
},
@ -2770,6 +2771,7 @@ static const struct command_registration riscv_exec_command_handlers[] = {
{
.name = "authdata_read",
.handler = riscv_authdata_read,
.usage = "",
.mode = COMMAND_ANY,
.help = "Return the 32-bit value read from authdata."
},
@ -2899,12 +2901,14 @@ const struct command_registration riscv_command_handlers[] = {
.name = "riscv",
.mode = COMMAND_ANY,
.help = "RISC-V Command Group",
.usage = "",
.chain = riscv_exec_command_handlers
},
{
.name = "arm",
.mode = COMMAND_ANY,
.help = "ARM Command Group",
.usage = "",
.chain = semihosting_common_handlers
},
COMMAND_REGISTRATION_DONE