summaryrefslogtreecommitdiff
path: root/src/jtag
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-16 00:23:32 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-16 00:23:32 +0000
commit0de478618a048dc5abd0d54f878721d7e2901eac (patch)
treed5059339d7d7aa4977d4bdcbb00970ef8a3c6c4e /src/jtag
parent011e9b85b1492be4412732bd290a4aa41460f62c (diff)
downloadopenocd+libswd-0de478618a048dc5abd0d54f878721d7e2901eac.tar.gz
openocd+libswd-0de478618a048dc5abd0d54f878721d7e2901eac.tar.bz2
openocd+libswd-0de478618a048dc5abd0d54f878721d7e2901eac.tar.xz
openocd+libswd-0de478618a048dc5abd0d54f878721d7e2901eac.zip
David Brownell <david-b@pacbell.net>:
Fix bug in a warning. It warned about "huge IRlength" for an older JRC with a two bit instruction register ... wrong! git-svn-id: svn://svn.berlios.de/openocd/trunk@2249 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/jtag')
-rw-r--r--src/jtag/tcl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/tcl.c b/src/jtag/tcl.c
index 8a7e38c3..0457bc70 100644
--- a/src/jtag/tcl.c
+++ b/src/jtag/tcl.c
@@ -416,7 +416,7 @@ static int jim_newtap_cmd( Jim_GetOptInfo *goi )
}
switch(n->value){
case NTAP_OPT_IRLEN:
- if (w < (jim_wide) sizeof(pTap->ir_capture_value))
+ if (w > (jim_wide) (8 * sizeof(pTap->ir_capture_value)))
LOG_WARNING("huge IR length %d", (int) w);
pTap->ir_length = w;
reqbits &= (~(NTREQ_IRLEN));