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
__archive__
zwelch 2009-06-16 00:23:32 +00:00
parent 011e9b85b1
commit 0de478618a
1 changed files with 1 additions and 1 deletions

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