- Fixes '=' whitespace
- Replace ')\(=\)\(\w\)' with ') \1 \2'.
- Replace '\(\w\)\(=\)(' with '\1 \2 ('.
- Replace '\(\w\)\(=\)\(\w\)' with '\1 \2 \3'.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2372 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -572,9 +572,9 @@ int arm920t_soft_reset_halt(struct target_s *target)
|
||||
return retval;
|
||||
}
|
||||
|
||||
long long then=timeval_ms();
|
||||
long long then = timeval_ms();
|
||||
int timeout;
|
||||
while (!(timeout=((timeval_ms()-then)>1000)))
|
||||
while (!(timeout = ((timeval_ms()-then)>1000)))
|
||||
{
|
||||
if (buf_get_u32(dbg_stat->value, EICE_DBG_STATUS_DBGACK, 1) == 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user