now compiles again.

git-svn-id: svn://svn.berlios.de/openocd/trunk@632 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe 2008-04-30 19:26:05 +00:00
parent 1231443b59
commit 6f944037d8
1 changed files with 4 additions and 4 deletions

View File

@ -673,7 +673,7 @@ int cortex_m3_assert_reset(target_t *target)
armv7m_common_t *armv7m = target->arch_info; armv7m_common_t *armv7m = target->arch_info;
cortex_m3_common_t *cortex_m3 = armv7m->arch_info; cortex_m3_common_t *cortex_m3 = armv7m->arch_info;
swjdp_common_t *swjdp = &cortex_m3->swjdp_info; swjdp_common_t *swjdp = &cortex_m3->swjdp_info;
int assert_srst = TRUE; int assert_srst = 1;
LOG_DEBUG("target->state: %s", target_state_strings[target->state]); LOG_DEBUG("target->state: %s", target_state_strings[target->state]);
@ -724,20 +724,20 @@ int cortex_m3_assert_reset(target_t *target)
{ {
case 0: case 0:
/* all Sandstorm suffer issue */ /* all Sandstorm suffer issue */
assert_srst = FALSE; assert_srst = 0;
break; break;
case 1: case 1:
case 3: case 3:
/* only Fury/DustDevil rev A suffer reset problems */ /* only Fury/DustDevil rev A suffer reset problems */
if (((did0 >> 8) & 0xff) == 0) if (((did0 >> 8) & 0xff) == 0)
assert_srst = FALSE; assert_srst = 0;
break; break;
} }
} }
} }
if (assert_srst == TRUE) if (assert_srst)
{ {
/* default to asserting srst */ /* default to asserting srst */
if (jtag_reset_config & RESET_SRST_PULLS_TRST) if (jtag_reset_config & RESET_SRST_PULLS_TRST)