Skip to content
Snippets Groups Projects
Commit 96509c76 authored by oharboe's avatar oharboe
Browse files

plugged bug w/irlen > 32 introduce in 1672

git-svn-id: svn://svn.berlios.de/openocd/trunk@1683 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent d7f71e7f
Branches
No related tags found
No related merge requests found
......@@ -574,7 +574,11 @@ void jtag_add_ir_scan(int num_fields, scan_field_t *fields, tap_state_t state)
for (j = 0; j < num_fields; j++)
{
jtag_tap_t *tap=fields[j].tap;
jtag_check_value_mask(fields+j, tap->expected, tap->expected_mask);
if (fields[j].in_value!=NULL)
{
/* we verify max 32 bit long irlens. */
jtag_check_value_mask(fields+j, tap->expected, tap->expected_mask);
}
if (modified[j])
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment