diff options
author | Antonio Borneo <borneo.antonio@gmail.com> | 2019-01-04 11:35:46 +0100 |
---|---|---|
committer | Tomas Vanek <vanekt@fbl.cz> | 2019-04-07 08:14:24 +0100 |
commit | a5fe9d6e24fc98ef2c97a97fe4c2e1c9b5e1a181 (patch) | |
tree | 05e64d3622c8a7a20dee3319051b1ab0a782f117 | |
parent | d303a2864df74117f6d0b2fae3f461fb0ee72226 (diff) | |
download | riscv-openocd-a5fe9d6e24fc98ef2c97a97fe4c2e1c9b5e1a181.zip riscv-openocd-a5fe9d6e24fc98ef2c97a97fe4c2e1c9b5e1a181.tar.gz riscv-openocd-a5fe9d6e24fc98ef2c97a97fe4c2e1c9b5e1a181.tar.bz2 |
target/armv4_5: use coherent syntax in struct initialization
While initializing struct command_registration, the field's name "name"
is not specified, thus relying on the fact that it is the first field
declared in the struct and it's initialization value can be listed as
the first one.
Be coherent in the struct initialization and always use the field's
name.
Change-Id: I9ef7ac08e7cd5b82a6a7896c47017943d668925f
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/5011
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Tested-by: jenkins
-rw-r--r-- | src/target/armv4_5.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/target/armv4_5.c b/src/target/armv4_5.c index e16a9ec..d04b179 100644 --- a/src/target/armv4_5.c +++ b/src/target/armv4_5.c @@ -1140,28 +1140,28 @@ static const struct command_registration arm_exec_command_handlers[] = { .usage = "cpnum op1 CRn CRm op2", }, { - "semihosting", + .name = "semihosting", .handler = handle_common_semihosting_command, .mode = COMMAND_EXEC, .usage = "['enable'|'disable']", .help = "activate support for semihosting operations", }, { - "semihosting_cmdline", + .name = "semihosting_cmdline", .handler = handle_common_semihosting_cmdline, .mode = COMMAND_EXEC, .usage = "arguments", .help = "command line arguments to be passed to program", }, { - "semihosting_fileio", + .name = "semihosting_fileio", .handler = handle_common_semihosting_fileio_command, .mode = COMMAND_EXEC, .usage = "['enable'|'disable']", .help = "activate support for semihosting fileio operations", }, { - "semihosting_resexit", + .name = "semihosting_resexit", .handler = handle_common_semihosting_resumable_exit_command, .mode = COMMAND_EXEC, .usage = "['enable'|'disable']", |