diff options
author | Leonard Crestez <leonard.crestez@nxp.com> | 2019-04-04 16:17:49 +0300 |
---|---|---|
committer | Matthias Welwarsky <matthias@welwarsky.de> | 2019-04-10 10:17:17 +0100 |
commit | 3b291a369c4e0804619be7c9bf0a68b5f9d8e7d6 (patch) | |
tree | 126bc75a3916c46875ad41e2d0e1ca7274181418 | |
parent | 55d53fb64c900f1d196870cb39998b40e1e4ce0e (diff) | |
download | riscv-openocd-3b291a369c4e0804619be7c9bf0a68b5f9d8e7d6.zip riscv-openocd-3b291a369c4e0804619be7c9bf0a68b5f9d8e7d6.tar.gz riscv-openocd-3b291a369c4e0804619be7c9bf0a68b5f9d8e7d6.tar.bz2 |
target/imx6: Fix indentation in DAP_TAPID handling
OpenOCD scripts are usually indented with 4 spaces but here there are 8.
Change-Id: Iaad53e3b377d246d99119bb7bb5fd75d4422f564
Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
Reviewed-on: http://openocd.zylin.com/5039
Tested-by: jenkins
Reviewed-by: Matthias Welwarsky <matthias@welwarsky.de>
-rw-r--r-- | tcl/target/imx6.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tcl/target/imx6.cfg b/tcl/target/imx6.cfg index 58dc418..e2ef7ae 100644 --- a/tcl/target/imx6.cfg +++ b/tcl/target/imx6.cfg @@ -8,9 +8,9 @@ if { [info exists CHIPNAME] } { # CoreSight Debug Access Port if { [info exists DAP_TAPID] } { - set _DAP_TAPID $DAP_TAPID + set _DAP_TAPID $DAP_TAPID } else { - set _DAP_TAPID 0x4ba00477 + set _DAP_TAPID 0x4ba00477 } jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x01 -irmask 0x0f \ |