jtag: Fix jtag_reset fallback

The fallback provided for the jtag_reset command always fails with a
strange message: 'Error: invalid command name "de"'

This is caused by incorrect quoting inside the warning message.

Fixes: c07b774e8f ("jtag: replace command "jtag_reset" with "adapter [de]assert"")

Change-Id: Icd47fca2b5a7b33474bfb0040e88193a0968f301
Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
Reviewed-on: http://openocd.zylin.com/5416
Tested-by: jenkins
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
This commit is contained in:
Leonard Crestez 2020-01-27 20:10:30 +02:00 committed by Antonio Borneo
parent 38ac08c1c2
commit 09ac9ab135
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ proc jtag_nsrst_assert_width args {
}
proc jtag_reset args {
echo "DEPRECATED! use 'adapter [de]assert' not 'jtag_reset'"
echo "DEPRECATED! use 'adapter \[de\]assert' not 'jtag_reset'"
switch $args {
"0 0"
{eval adapter deassert trst deassert srst}