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
This commit is contained in:
parent
011e9b85b1
commit
0de478618a
|
@ -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…
Reference in New Issue