From: Antonio Borneo Date: Sun, 11 Dec 2022 10:08:32 +0000 (+0100) Subject: driver: vdebug: fix mode of cmd 'vdebug mem_path' X-Git-Tag: v0.12.0-rc3~4 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=0a829efda5c254ceca2371edb38e9b0e4a998706;hp=2b6fe8f1ab739798309b47f7b3a664894ba43a19 driver: vdebug: fix mode of cmd 'vdebug mem_path' The command 'vdebug mem_path' is reported in the documentation as '{Config Command}', but the code sets mode = COMMAND_ANY. The code of the commands sets some value that is only used during the init phase, so the documentation is correct. Change mode of command 'vdebug mem_path' to COMMAND_CONFIG. Change-Id: Icb940fe382cbc75015273b35dcc8a88fc2a7d0ac Signed-off-by: Antonio Borneo Reviewed-on: https://review.openocd.org/c/openocd/+/7395 Tested-by: jenkins Reviewed-by: Jacek Wuwer --- diff --git a/src/jtag/drivers/vdebug.c b/src/jtag/drivers/vdebug.c index ef7a49332c..7898e9d9b7 100644 --- a/src/jtag/drivers/vdebug.c +++ b/src/jtag/drivers/vdebug.c @@ -1246,7 +1246,7 @@ static const struct command_registration vdebug_command_handlers[] = { { .name = "mem_path", .handler = &vdebug_set_mem, - .mode = COMMAND_ANY, + .mode = COMMAND_CONFIG, .help = "set the design memory for the code load", .usage = " ", },