forked from auracaster/openocd
- Fixes '>=' whitespace
- Replace ')\(>=\)\(\w\)' with ') \1 \2'. - Replace '\(\w\)\(>=\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2367 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -499,7 +499,7 @@ int xscale_read_tx(target_t *target, int consume)
|
||||
{
|
||||
goto done;
|
||||
}
|
||||
if (debug_level>=3)
|
||||
if (debug_level >= 3)
|
||||
{
|
||||
LOG_DEBUG("waiting 100ms");
|
||||
alive_sleep(100); /* avoid flooding the logs */
|
||||
@@ -580,7 +580,7 @@ int xscale_write_rx(target_t *target)
|
||||
}
|
||||
if (!(field0_in & 1))
|
||||
goto done;
|
||||
if (debug_level>=3)
|
||||
if (debug_level >= 3)
|
||||
{
|
||||
LOG_DEBUG("waiting 100ms");
|
||||
alive_sleep(100); /* avoid flooding the logs */
|
||||
|
||||
Reference in New Issue
Block a user