aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Murray <alex.murray@cohdawireless.com>2013-11-20 09:17:04 +1030
committerSpencer Oliver <spen@spen-soft.co.uk>2013-12-22 20:23:34 +0000
commit6018406c78d19d19f875973f598929546aaa3608 (patch)
treee7c2af3404a47bf9a09cd52fe021709fa7f23d42
parent9b2cc2f72f0774e9558006a267de524dfe79ec88 (diff)
target/imx6: Fix typo in setting _SJC_TAPID from SJC_TAPID variable
The set command was missing the $ prefix on the SJC_TAPID variable and so would fail if SJC_TAPID was set Change-Id: Ib9af58f5188bd8a2bc3f888309f203d624476c27 Signed-off-by: Alex Murray <alex.murray@cohdawireless.com> Reviewed-on: http://openocd.zylin.com/1811 Tested-by: jenkins Reviewed-by: Jens Bauer <jens@gpio.dk> Reviewed-by: Vladimir Zapolskiy <vz@mleia.com> Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
-rw-r--r--tcl/target/imx6.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcl/target/imx6.cfg b/tcl/target/imx6.cfg
index 622261fe..afdf9614 100644
--- a/tcl/target/imx6.cfg
+++ b/tcl/target/imx6.cfg
@@ -21,7 +21,7 @@ jtag newtap $_CHIPNAME sdma -irlen 4 -ircapture 0x00 -irmask 0x0f
# System JTAG Controller
if { [info exists SJC_TAPID] } {
- set _SJC_TAPID SJC_TAPID
+ set _SJC_TAPID $SJC_TAPID
} else {
set _SJC_TAPID 0x0191c01d
}