Browse Source

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
tags/v0.2.0
zwelch 15 years ago
parent
commit
0de478618a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/jtag/tcl.c

+ 1
- 1
src/jtag/tcl.c View File

@@ -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));


Loading…
Cancel
Save