- fix typo in jtag_add_end_state

git-svn-id: svn://svn.berlios.de/openocd/trunk@863 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
ntfreak 2008-07-23 21:31:43 +00:00
parent bf58fe6509
commit 65b4c4117d
1 changed files with 1 additions and 1 deletions

View File

@ -1042,7 +1042,7 @@ int MINIDRIVER(interface_jtag_add_reset)(int req_trst, int req_srst)
void jtag_add_end_state(enum tap_state state) void jtag_add_end_state(enum tap_state state)
{ {
cmd_queue_end_state = state; cmd_queue_end_state = state;
if ((cmd_queue_end_state == TAP_SD)||(cmd_queue_end_state == TAP_SD)) if ((cmd_queue_end_state == TAP_SD)||(cmd_queue_end_state == TAP_SI))
{ {
LOG_ERROR("BUG: TAP_SD/SI can't be end state. Calling code should use a larger scan field"); LOG_ERROR("BUG: TAP_SD/SI can't be end state. Calling code should use a larger scan field");
} }