- Replace 'while(' with 'while ('.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2358 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
zwelch 2009-06-23 22:36:11 +00:00
parent e43979e702
commit 50c086ffb9
24 changed files with 124 additions and 124 deletions

View File

@ -156,7 +156,7 @@ static int avr_jtagprg_chiperase(avr_common_t *avr)
return ERROR_FAIL; return ERROR_FAIL;
} }
LOG_DEBUG("poll_value = 0x%04" PRIx32 "", poll_value); LOG_DEBUG("poll_value = 0x%04" PRIx32 "", poll_value);
}while(!(poll_value & 0x0200)); }while (!(poll_value & 0x0200));
return ERROR_OK; return ERROR_OK;
} }
@ -203,7 +203,7 @@ static int avr_jtagprg_writeflashpage(avr_common_t *avr, uint8_t *page_buf, uint
return ERROR_FAIL; return ERROR_FAIL;
} }
LOG_DEBUG("poll_value = 0x%04" PRIx32 "", poll_value); LOG_DEBUG("poll_value = 0x%04" PRIx32 "", poll_value);
}while(!(poll_value & 0x0200)); }while (!(poll_value & 0x0200));
return ERROR_OK; return ERROR_OK;
} }
@ -277,7 +277,7 @@ static int avrf_write(struct flash_bank_s *bank, uint8_t *buffer, uint32_t offse
} }
cur_size = 0; cur_size = 0;
while(count > 0) while (count > 0)
{ {
if (count > page_size) if (count > page_size)
{ {

View File

@ -452,7 +452,7 @@ static int pic32mx_write_block(struct flash_bank_s *bank, uint8_t *buffer, uint3
target_free_working_area(target, source); target_free_working_area(target, source);
while(count > 0) while (count > 0)
{ {
uint32_t value; uint32_t value;
memcpy(&value, buffer, sizeof(uint32_t)); memcpy(&value, buffer, sizeof(uint32_t));

View File

@ -610,7 +610,7 @@ static int stellaris_erase(struct flash_bank_s *bank, int first, int last)
{ {
target_read_u32(target, FLASH_FMC, &flash_fmc); target_read_u32(target, FLASH_FMC, &flash_fmc);
} }
while(flash_fmc & FMC_ERASE); while (flash_fmc & FMC_ERASE);
/* Check acess violations */ /* Check acess violations */
target_read_u32(target, FLASH_CRIS, &flash_cris); target_read_u32(target, FLASH_CRIS, &flash_cris);
@ -687,7 +687,7 @@ static int stellaris_protect(struct flash_bank_s *bank, int set, int first, int
{ {
target_read_u32(target, FLASH_FMC, &flash_fmc); target_read_u32(target, FLASH_FMC, &flash_fmc);
} }
while(flash_fmc & FMC_COMT); while (flash_fmc & FMC_COMT);
/* Check acess violations */ /* Check acess violations */
target_read_u32(target, FLASH_CRIS, &flash_cris); target_read_u32(target, FLASH_CRIS, &flash_cris);
@ -926,7 +926,7 @@ static int stellaris_write(struct flash_bank_s *bank, uint8_t *buffer, uint32_t
uint8_t last_word[4] = {0xff, 0xff, 0xff, 0xff}; uint8_t last_word[4] = {0xff, 0xff, 0xff, 0xff};
int i = 0; int i = 0;
while(bytes_remaining > 0) while (bytes_remaining > 0)
{ {
last_word[i++] = *(buffer + bytes_written); last_word[i++] = *(buffer + bytes_written);
bytes_remaining--; bytes_remaining--;

View File

@ -578,7 +578,7 @@ static int str7x_write(struct flash_bank_s *bank, uint8_t *buffer, uint32_t offs
uint8_t last_dword[8] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; uint8_t last_dword[8] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
int i = 0; int i = 0;
while(bytes_remaining > 0) while (bytes_remaining > 0)
{ {
last_dword[i++] = *(buffer + bytes_written); last_dword[i++] = *(buffer + bytes_written);
bytes_remaining--; bytes_remaining--;

View File

@ -607,7 +607,7 @@ static int str9x_write(struct flash_bank_s *bank,
uint8_t last_halfword[2] = {0xff, 0xff}; uint8_t last_halfword[2] = {0xff, 0xff};
int i = 0; int i = 0;
while(bytes_remaining > 0) while (bytes_remaining > 0)
{ {
last_halfword[i++] = *(buffer + bytes_written); last_halfword[i++] = *(buffer + bytes_written);
bytes_remaining--; bytes_remaining--;

View File

@ -542,7 +542,7 @@ static int str9xpec_lock_device(struct flash_bank_s *bank)
jtag_add_dr_scan(1, &field, jtag_get_end_state()); jtag_add_dr_scan(1, &field, jtag_get_end_state());
jtag_execute_queue(); jtag_execute_queue();
} while(!(status & ISC_STATUS_BUSY)); } while (!(status & ISC_STATUS_BUSY));
str9xpec_isc_disable(bank); str9xpec_isc_disable(bank);
@ -722,7 +722,7 @@ static int str9xpec_write(struct flash_bank_s *bank, uint8_t *buffer, uint32_t o
status = buf_get_u32(scanbuf, 0, 8); status = buf_get_u32(scanbuf, 0, 8);
} while(!(status & ISC_STATUS_BUSY)); } while (!(status & ISC_STATUS_BUSY));
if ((status & ISC_STATUS_ERROR) != STR9XPEC_ISC_SUCCESS) if ((status & ISC_STATUS_ERROR) != STR9XPEC_ISC_SUCCESS)
return ERROR_FLASH_OPERATION_FAILED; return ERROR_FLASH_OPERATION_FAILED;
@ -740,7 +740,7 @@ static int str9xpec_write(struct flash_bank_s *bank, uint8_t *buffer, uint32_t o
uint8_t last_dword[8] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; uint8_t last_dword[8] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
int i = 0; int i = 0;
while(bytes_remaining > 0) while (bytes_remaining > 0)
{ {
last_dword[i++] = *(buffer + bytes_written); last_dword[i++] = *(buffer + bytes_written);
bytes_remaining--; bytes_remaining--;
@ -772,7 +772,7 @@ static int str9xpec_write(struct flash_bank_s *bank, uint8_t *buffer, uint32_t o
status = buf_get_u32(scanbuf, 0, 8); status = buf_get_u32(scanbuf, 0, 8);
} while(!(status & ISC_STATUS_BUSY)); } while (!(status & ISC_STATUS_BUSY));
if ((status & ISC_STATUS_ERROR) != STR9XPEC_ISC_SUCCESS) if ((status & ISC_STATUS_ERROR) != STR9XPEC_ISC_SUCCESS)
return ERROR_FLASH_OPERATION_FAILED; return ERROR_FLASH_OPERATION_FAILED;
@ -962,7 +962,7 @@ static int str9xpec_write_options(struct flash_bank_s *bank)
jtag_add_dr_scan(1, &field, jtag_get_end_state()); jtag_add_dr_scan(1, &field, jtag_get_end_state());
jtag_execute_queue(); jtag_execute_queue();
} while(!(status & ISC_STATUS_BUSY)); } while (!(status & ISC_STATUS_BUSY));
str9xpec_isc_disable(bank); str9xpec_isc_disable(bank);

View File

@ -269,11 +269,11 @@ int unregister_all_commands(command_context_t *context)
if (context == NULL) if (context == NULL)
return ERROR_OK; return ERROR_OK;
while(NULL != context->commands) while (NULL != context->commands)
{ {
c = context->commands; c = context->commands;
while(NULL != c->children) while (NULL != c->children)
{ {
c2 = c->children; c2 = c->children;
c->children = c->children->next; c->children = c->children->next;
@ -304,7 +304,7 @@ int unregister_command(command_context_t *context, char *name)
/* find command */ /* find command */
c = context->commands; c = context->commands;
while(NULL != c) while (NULL != c)
{ {
if (strcmp(name, c->name) == 0) if (strcmp(name, c->name) == 0)
{ {
@ -320,7 +320,7 @@ int unregister_command(command_context_t *context, char *name)
} }
/* unregister children */ /* unregister children */
while(NULL != c->children) while (NULL != c->children)
{ {
c2 = c->children; c2 = c->children;
c->children = c->children->next; c->children = c->children->next;

View File

@ -116,7 +116,7 @@ void Jim_DeleteFileHandler(Jim_Interp *interp, void *handle)
Jim_EventLoop *eventLoop = Jim_GetAssocData(interp, "eventloop"); Jim_EventLoop *eventLoop = Jim_GetAssocData(interp, "eventloop");
fe = eventLoop->fileEventHead; fe = eventLoop->fileEventHead;
while(fe) { while (fe) {
if (fe->handle == handle) { if (fe->handle == handle) {
if (prev == NULL) if (prev == NULL)
eventLoop->fileEventHead = fe->next; eventLoop->fileEventHead = fe->next;
@ -194,7 +194,7 @@ jim_wide Jim_DeleteTimeHandler(Jim_Interp *interp, jim_wide id)
te = eventLoop->timeEventHead; te = eventLoop->timeEventHead;
if (id >= eventLoop->timeEventNextId) if (id >= eventLoop->timeEventNextId)
return -2; /* wrong event ID */ return -2; /* wrong event ID */
while(te) { while (te) {
if (te->id == id) { if (te->id == id) {
remain = (te->when_sec - cur_sec) * 1000; remain = (te->when_sec - cur_sec) * 1000;
remain += (te->when_ms - cur_ms) ; remain += (te->when_ms - cur_ms) ;
@ -224,7 +224,7 @@ static Jim_TimeEvent *JimSearchNearestTimer(Jim_EventLoop *eventLoop)
Jim_TimeEvent *te = eventLoop->timeEventHead; Jim_TimeEvent *te = eventLoop->timeEventHead;
Jim_TimeEvent *nearest = NULL; Jim_TimeEvent *nearest = NULL;
while(te) { while (te) {
if (!nearest || te->when_sec < nearest->when_sec || if (!nearest || te->when_sec < nearest->when_sec ||
(te->when_sec == nearest->when_sec && (te->when_sec == nearest->when_sec &&
te->when_ms < nearest->when_ms)) te->when_ms < nearest->when_ms))
@ -319,7 +319,7 @@ int Jim_ProcessEvents(Jim_Interp *interp, int flags)
} }
} else if (retval > 0) { } else if (retval > 0) {
fe = eventLoop->fileEventHead; fe = eventLoop->fileEventHead;
while(fe != NULL) { while (fe != NULL) {
int fd = fileno((FILE*)fe->handle); int fd = fileno((FILE*)fe->handle);
// fprintf(stderr,"fd: %d mask: %02x \n",fd,fe->mask); // fprintf(stderr,"fd: %d mask: %02x \n",fd,fe->mask);
@ -361,7 +361,7 @@ int Jim_ProcessEvents(Jim_Interp *interp, int flags)
/* Check time events */ /* Check time events */
te = eventLoop->timeEventHead; te = eventLoop->timeEventHead;
maxId = eventLoop->timeEventNextId-1; maxId = eventLoop->timeEventNextId-1;
while(te) { while (te) {
long now_sec, now_ms; long now_sec, now_ms;
jim_wide id; jim_wide id;
@ -400,7 +400,7 @@ void JimELAssocDataDeleProc(Jim_Interp *interp, void *data)
Jim_EventLoop *eventLoop = data; Jim_EventLoop *eventLoop = data;
fe = eventLoop->fileEventHead; fe = eventLoop->fileEventHead;
while(fe) { while (fe) {
next = fe->next; next = fe->next;
if (fe->finalizerProc) if (fe->finalizerProc)
fe->finalizerProc(interp, fe->clientData); fe->finalizerProc(interp, fe->clientData);
@ -409,7 +409,7 @@ void JimELAssocDataDeleProc(Jim_Interp *interp, void *data)
} }
te = eventLoop->timeEventHead; te = eventLoop->timeEventHead;
while(te) { while (te) {
next = te->next; next = te->next;
if (te->finalizerProc) if (te->finalizerProc)
te->finalizerProc(interp, te->clientData); te->finalizerProc(interp, te->clientData);

View File

@ -245,7 +245,7 @@ static jim_wide JimStrtoll(const char *nptr, char **endptr, register int base)
static int JimStringMatch(const char *pattern, int patternLen, static int JimStringMatch(const char *pattern, int patternLen,
const char *string, int stringLen, int nocase) const char *string, int stringLen, int nocase)
{ {
while(patternLen) { while (patternLen) {
switch(pattern[0]) { switch(pattern[0]) {
case '*': case '*':
while (pattern[1] == '*') { while (pattern[1] == '*') {
@ -254,7 +254,7 @@ static int JimStringMatch(const char *pattern, int patternLen,
} }
if (patternLen == 1) if (patternLen == 1)
return 1; /* match */ return 1; /* match */
while(stringLen) { while (stringLen) {
if (JimStringMatch(pattern+1, patternLen-1, if (JimStringMatch(pattern+1, patternLen-1,
string, stringLen, nocase)) string, stringLen, nocase))
return 1; /* match */ return 1; /* match */
@ -281,7 +281,7 @@ static int JimStringMatch(const char *pattern, int patternLen,
patternLen--; patternLen--;
} }
match = 0; match = 0;
while(1) { while (1) {
if (pattern[0] == '\\') { if (pattern[0] == '\\') {
pattern++; pattern++;
patternLen--; patternLen--;
@ -352,7 +352,7 @@ static int JimStringMatch(const char *pattern, int patternLen,
pattern++; pattern++;
patternLen--; patternLen--;
if (stringLen == 0) { if (stringLen == 0) {
while(*pattern == '*') { while (*pattern == '*') {
pattern++; pattern++;
patternLen--; patternLen--;
} }
@ -370,7 +370,7 @@ int JimStringCompare(const char *s1, int l1, const char *s2, int l2,
unsigned char *u1 = (unsigned char*) s1, *u2 = (unsigned char*) s2; unsigned char *u1 = (unsigned char*) s1, *u2 = (unsigned char*) s2;
if (nocase == 0) { if (nocase == 0) {
while(l1 && l2) { while (l1 && l2) {
if (*u1 != *u2) if (*u1 != *u2)
return (int)*u1-*u2; return (int)*u1-*u2;
u1++; u2++; l1--; l2--; u1++; u2++; l1--; l2--;
@ -378,7 +378,7 @@ int JimStringCompare(const char *s1, int l1, const char *s2, int l2,
if (!l1 && !l2) return 0; if (!l1 && !l2) return 0;
return l1-l2; return l1-l2;
} else { } else {
while(l1 && l2) { while (l1 && l2) {
if (tolower((int)*u1) != tolower((int)*u2)) if (tolower((int)*u1) != tolower((int)*u2))
return tolower((int)*u1)-tolower((int)*u2); return tolower((int)*u1)-tolower((int)*u2);
u1++; u2++; l1--; l2--; u1++; u2++; l1--; l2--;
@ -424,7 +424,7 @@ int Jim_StringToWide(const char *str, jim_wide *widePtr, int base)
if ((str[0] == '\0') || (str == endptr) ) if ((str[0] == '\0') || (str == endptr) )
return JIM_ERR; return JIM_ERR;
if (endptr[0] != '\0') { if (endptr[0] != '\0') {
while(*endptr) { while (*endptr) {
if (!isspace((int)*endptr)) if (!isspace((int)*endptr))
return JIM_ERR; return JIM_ERR;
endptr++; endptr++;
@ -441,7 +441,7 @@ int Jim_StringToIndex(const char *str, int *intPtr)
if ( (str[0] == '\0') || (str == endptr) ) if ( (str[0] == '\0') || (str == endptr) )
return JIM_ERR; return JIM_ERR;
if (endptr[0] != '\0') { if (endptr[0] != '\0') {
while(*endptr) { while (*endptr) {
if (!isspace((int)*endptr)) if (!isspace((int)*endptr))
return JIM_ERR; return JIM_ERR;
endptr++; endptr++;
@ -473,7 +473,7 @@ int Jim_DoubleToString(char *buf, double doubleValue)
len = sprintf(buf, "%.17g", doubleValue); len = sprintf(buf, "%.17g", doubleValue);
s = buf; s = buf;
while(*s) { while (*s) {
if (*s == '.') return len; if (*s == '.') return len;
s++; s++;
} }
@ -661,7 +661,7 @@ unsigned int Jim_IdentityHashFunction(unsigned int key)
unsigned int Jim_GenHashFunction(const unsigned char *buf, int len) unsigned int Jim_GenHashFunction(const unsigned char *buf, int len)
{ {
unsigned int h = 0; unsigned int h = 0;
while(len--) while (len--)
h += (h<<3)+*buf++; h += (h<<3)+*buf++;
return h; return h;
} }
@ -729,7 +729,7 @@ int Jim_ExpandHashTable(Jim_HashTable *ht, unsigned int size)
/* For each hash entry on this slot... */ /* For each hash entry on this slot... */
he = ht->table[i]; he = ht->table[i];
while(he) { while (he) {
unsigned int h; unsigned int h;
nextHe = he->next; nextHe = he->next;
@ -802,7 +802,7 @@ int Jim_DeleteHashEntry(Jim_HashTable *ht, const void *key)
he = ht->table[h]; he = ht->table[h];
prevHe = NULL; prevHe = NULL;
while(he) { while (he) {
if (Jim_CompareHashKeys(ht, key, he->key)) { if (Jim_CompareHashKeys(ht, key, he->key)) {
/* Unlink the element from the list */ /* Unlink the element from the list */
if (prevHe) if (prevHe)
@ -831,7 +831,7 @@ int Jim_FreeHashTable(Jim_HashTable *ht)
Jim_HashEntry *he, *nextHe; Jim_HashEntry *he, *nextHe;
if ((he = ht->table[i]) == NULL) continue; if ((he = ht->table[i]) == NULL) continue;
while(he) { while (he) {
nextHe = he->next; nextHe = he->next;
Jim_FreeEntryKey(ht, he); Jim_FreeEntryKey(ht, he);
Jim_FreeEntryVal(ht, he); Jim_FreeEntryVal(ht, he);
@ -855,7 +855,7 @@ Jim_HashEntry *Jim_FindHashEntry(Jim_HashTable *ht, const void *key)
if (ht->size == 0) return NULL; if (ht->size == 0) return NULL;
h = Jim_HashKey(ht, key) & ht->sizemask; h = Jim_HashKey(ht, key) & ht->sizemask;
he = ht->table[h]; he = ht->table[h];
while(he) { while (he) {
if (Jim_CompareHashKeys(ht, key, he->key)) if (Jim_CompareHashKeys(ht, key, he->key))
return he; return he;
he = he->next; he = he->next;
@ -916,7 +916,7 @@ static unsigned int JimHashTableNextPower(unsigned int size)
if (size >= 2147483648U) if (size >= 2147483648U)
return 2147483648U; return 2147483648U;
while(1) { while (1) {
if (i >= size) if (i >= size)
return i; return i;
i *= 2; i *= 2;
@ -938,7 +938,7 @@ static int JimInsertHashEntry(Jim_HashTable *ht, const void *key)
h = Jim_HashKey(ht, key) & ht->sizemask; h = Jim_HashKey(ht, key) & ht->sizemask;
/* Search if this slot does not already contain the given key */ /* Search if this slot does not already contain the given key */
he = ht->table[h]; he = ht->table[h];
while(he) { while (he) {
if (Jim_CompareHashKeys(ht, key, he->key)) if (Jim_CompareHashKeys(ht, key, he->key))
return -1; return -1;
he = he->next; he = he->next;
@ -1180,7 +1180,7 @@ void JimParserInit(struct JimParserCtx *pc, const char *prg,
int JimParseScript(struct JimParserCtx *pc) int JimParseScript(struct JimParserCtx *pc)
{ {
while(1) { /* the while is used to reiterate with continue if needed */ while (1) { /* the while is used to reiterate with continue if needed */
if (!pc->len) { if (!pc->len) {
pc->tstart = pc->p; pc->tstart = pc->p;
pc->tend = pc->p-1; pc->tend = pc->p-1;
@ -1657,7 +1657,7 @@ int Jim_ScriptIsComplete(const char *s, int len, char *stateCharPtr)
int level = 0; int level = 0;
int state = ' '; int state = ' ';
while(len) { while (len) {
switch (*s) { switch (*s) {
case '\\': case '\\':
if (len > 1) if (len > 1)
@ -2341,7 +2341,7 @@ static Jim_Obj *Jim_FormatString_Inner(Jim_Interp *interp, Jim_Obj *fmtObjPtr,
case '8': case '8':
case '9': case '9':
accum = 0; accum = 0;
while( isdigit(*fmt) && (fmtLen > 0) ){ while ( isdigit(*fmt) && (fmtLen > 0) ){
accum = (accum * 10) + (*fmt - '0'); accum = (accum * 10) + (*fmt - '0');
fmt++; fmtLen--; fmt++; fmtLen--;
} }
@ -3029,7 +3029,7 @@ int SetScriptFromAny(Jim_Interp *interp, struct Jim_Obj *objPtr)
} }
JimParserInit(&parser, scriptText, scriptTextLen, initialLineNumber); JimParserInit(&parser, scriptText, scriptTextLen, initialLineNumber);
while(!JimParserEof(&parser)) { while (!JimParserEof(&parser)) {
char *token; char *token;
int len, type, linenr; int len, type, linenr;
@ -3621,7 +3621,7 @@ int Jim_SetVariableLink(Jim_Interp *interp, Jim_Obj *nameObjPtr,
Jim_Obj *objPtr = targetNameObjPtr; Jim_Obj *objPtr = targetNameObjPtr;
Jim_Var *varPtr; Jim_Var *varPtr;
/* Cycles are only possible with 'uplevel 0' */ /* Cycles are only possible with 'uplevel 0' */
while(1) { while (1) {
if (Jim_StringEqObj(objPtr, nameObjPtr, 0)) { if (Jim_StringEqObj(objPtr, nameObjPtr, 0)) {
Jim_SetResultString(interp, Jim_SetResultString(interp,
"can't upvar from variable to itself", -1); "can't upvar from variable to itself", -1);
@ -4262,7 +4262,7 @@ int Jim_Collect(Jim_Interp *interp)
* is of a type that can contain references. */ * is of a type that can contain references. */
Jim_InitHashTable(&marks, &JimRefMarkHashTableType, NULL); Jim_InitHashTable(&marks, &JimRefMarkHashTableType, NULL);
objPtr = interp->liveList; objPtr = interp->liveList;
while(objPtr) { while (objPtr) {
if (objPtr->typePtr == NULL || if (objPtr->typePtr == NULL ||
objPtr->typePtr->flags & JIM_TYPE_REFERENCES) { objPtr->typePtr->flags & JIM_TYPE_REFERENCES) {
const char *str, *p; const char *str, *p;
@ -4291,7 +4291,7 @@ int Jim_Collect(Jim_Interp *interp)
continue; continue;
} }
/* Extract references from the object string repr. */ /* Extract references from the object string repr. */
while(1) { while (1) {
int i; int i;
jim_wide id; jim_wide id;
char buf[21]; char buf[21];
@ -4488,7 +4488,7 @@ void Jim_FreeInterp(Jim_Interp *i)
Jim_FreeHashTable(&i->packages); Jim_FreeHashTable(&i->packages);
Jim_Free(i->prngState); Jim_Free(i->prngState);
/* Free the call frames list */ /* Free the call frames list */
while(cf) { while (cf) {
prevcf = cf->parentCallFrame; prevcf = cf->parentCallFrame;
JimFreeCallFrame(i, cf, JIM_FCF_NONE); JimFreeCallFrame(i, cf, JIM_FCF_NONE);
cf = prevcf; cf = prevcf;
@ -4500,7 +4500,7 @@ void Jim_FreeInterp(Jim_Interp *i)
Jim_fprintf( i, i->cookie_stdout,JIM_NL "-------------------------------------" JIM_NL); Jim_fprintf( i, i->cookie_stdout,JIM_NL "-------------------------------------" JIM_NL);
Jim_fprintf( i, i->cookie_stdout,"Objects still in the free list:" JIM_NL); Jim_fprintf( i, i->cookie_stdout,"Objects still in the free list:" JIM_NL);
while(objPtr) { while (objPtr) {
const char *type = objPtr->typePtr ? const char *type = objPtr->typePtr ?
objPtr->typePtr->name : ""; objPtr->typePtr->name : "";
Jim_fprintf( i, i->cookie_stdout,"%p \"%-10s\": '%.20s' (refCount: %d)" JIM_NL, Jim_fprintf( i, i->cookie_stdout,"%p \"%-10s\": '%.20s' (refCount: %d)" JIM_NL,
@ -4526,7 +4526,7 @@ void Jim_FreeInterp(Jim_Interp *i)
} }
/* Free cached CallFrame structures */ /* Free cached CallFrame structures */
cf = i->freeFramesList; cf = i->freeFramesList;
while(cf) { while (cf) {
nextcf = cf->nextFramePtr; nextcf = cf->nextFramePtr;
if (cf->vars.table != NULL) if (cf->vars.table != NULL)
Jim_Free(cf->vars.table); Jim_Free(cf->vars.table);
@ -5102,7 +5102,7 @@ char *BackslashQuoteString(const char *s, int len, int *qlenPtr)
char *q = Jim_Alloc(len*2+1), *p; char *q = Jim_Alloc(len*2+1), *p;
p = q; p = q;
while(*s) { while (*s) {
switch (*s) { switch (*s) {
case ' ': case ' ':
case '$': case '$':
@ -5215,7 +5215,7 @@ int SetListFromAny(Jim_Interp *interp, struct Jim_Obj *objPtr)
/* Convert into a list */ /* Convert into a list */
JimParserInit(&parser, str, strLen, 1); JimParserInit(&parser, str, strLen, 1);
while(!JimParserEof(&parser)) { while (!JimParserEof(&parser)) {
char *token; char *token;
int tokenLen, type; int tokenLen, type;
Jim_Obj *elementPtr; Jim_Obj *elementPtr;
@ -5794,7 +5794,7 @@ int SetDictFromAny(Jim_Interp *interp, struct Jim_Obj *objPtr)
/* Convert into a dict */ /* Convert into a dict */
JimParserInit(&parser, str, strLen, 1); JimParserInit(&parser, str, strLen, 1);
i = 0; i = 0;
while(!JimParserEof(&parser)) { while (!JimParserEof(&parser)) {
char *token; char *token;
int tokenLen, type; int tokenLen, type;
@ -6276,7 +6276,7 @@ static struct Jim_ExprOperator Jim_ExprOperators[] = {
int JimParseExpression(struct JimParserCtx *pc) int JimParseExpression(struct JimParserCtx *pc)
{ {
/* Discard spaces and quoted newline */ /* Discard spaces and quoted newline */
while(*(pc->p) == ' ' || while (*(pc->p) == ' ' ||
*(pc->p) == '\t' || *(pc->p) == '\t' ||
*(pc->p) == '\r' || *(pc->p) == '\r' ||
*(pc->p) == '\n' || *(pc->p) == '\n' ||
@ -6623,7 +6623,7 @@ static void ExprMakeLazy(Jim_Interp *interp, ExprByteCode *expr)
/* Search for the end of the first operator */ /* Search for the end of the first operator */
leftindex = index-1; leftindex = index-1;
arity = 1; arity = 1;
while(arity) { while (arity) {
switch(expr->opcode[leftindex]) { switch(expr->opcode[leftindex]) {
case JIM_EXPROP_NUMBER: case JIM_EXPROP_NUMBER:
case JIM_EXPROP_COMMAND: case JIM_EXPROP_COMMAND:
@ -6697,7 +6697,7 @@ int SetExprFromAny(Jim_Interp *interp, struct Jim_Obj *objPtr)
Jim_InitStack(&stack); Jim_InitStack(&stack);
JimParserInit(&parser, exprText, exprTextLen, 1); JimParserInit(&parser, exprText, exprTextLen, 1);
while(!JimParserEof(&parser)) { while (!JimParserEof(&parser)) {
char *token; char *token;
int len, type; int len, type;
@ -6731,7 +6731,7 @@ int SetExprFromAny(Jim_Interp *interp, struct Jim_Obj *objPtr)
break; break;
case JIM_TT_EXPR_OPERATOR: case JIM_TT_EXPR_OPERATOR:
op = JimExprOperatorInfo(token); op = JimExprOperatorInfo(token);
while(1) { while (1) {
Jim_ExprOperator *stackTopOp; Jim_ExprOperator *stackTopOp;
if (Jim_StackPeek(&stack) != NULL) { if (Jim_StackPeek(&stack) != NULL) {
@ -6758,7 +6758,7 @@ int SetExprFromAny(Jim_Interp *interp, struct Jim_Obj *objPtr)
case JIM_TT_SUBEXPR_END: case JIM_TT_SUBEXPR_END:
{ {
int found = 0; int found = 0;
while(Jim_StackLen(&stack)) { while (Jim_StackLen(&stack)) {
char *opstr = Jim_StackPop(&stack); char *opstr = Jim_StackPop(&stack);
if (!strcmp(opstr, "(")) { if (!strcmp(opstr, "(")) {
Jim_Free(opstr); Jim_Free(opstr);
@ -9094,7 +9094,7 @@ int SetSubstFromAny(Jim_Interp *interp, struct Jim_Obj *objPtr, int flags)
script->fileName = NULL; script->fileName = NULL;
JimParserInit(&parser, scriptText, scriptTextLen, 1); JimParserInit(&parser, scriptText, scriptTextLen, 1);
while(1) { while (1) {
char *token; char *token;
int len, type, linenr; int len, type, linenr;
@ -11138,7 +11138,7 @@ static Jim_Obj *JimStringMap(Jim_Interp *interp, Jim_Obj *mapListObjPtr,
} }
str = Jim_GetString(objPtr, &strLen); str = Jim_GetString(objPtr, &strLen);
/* Map it */ /* Map it */
while(strLen) { while (strLen) {
for (i = 0; i < numMaps; i++) { for (i = 0; i < numMaps; i++) {
if (strLen >= keyLen[i] && keyLen[i]) { if (strLen >= keyLen[i] && keyLen[i]) {
if (!JimStringCompare(str, keyLen[i], key[i], keyLen[i], if (!JimStringCompare(str, keyLen[i], key[i], keyLen[i],
@ -11630,7 +11630,7 @@ static int Jim_SubstCoreCommand(Jim_Interp *interp, int argc,
return JIM_ERR; return JIM_ERR;
} }
i = argc-2; i = argc-2;
while(i--) { while (i--) {
if (Jim_CompareStringImmediate(interp, argv[i+1], if (Jim_CompareStringImmediate(interp, argv[i+1],
"-nobackslashes")) "-nobackslashes"))
flags |= JIM_SUBST_NOESC; flags |= JIM_SUBST_NOESC;
@ -12283,7 +12283,7 @@ void Jim_RegisterCoreCommands(Jim_Interp *interp)
{ {
int i = 0; int i = 0;
while(Jim_CoreCommandsTable[i].name != NULL) { while (Jim_CoreCommandsTable[i].name != NULL) {
Jim_CreateCommand(interp, Jim_CreateCommand(interp,
Jim_CoreCommandsTable[i].name, Jim_CoreCommandsTable[i].name,
Jim_CoreCommandsTable[i].cmdProc, Jim_CoreCommandsTable[i].cmdProc,
@ -12361,7 +12361,7 @@ int Jim_InteractivePrompt(Jim_Interp *interp)
Jim_fflush( interp, interp->cookie_stdout); Jim_fflush( interp, interp->cookie_stdout);
scriptObjPtr = Jim_NewStringObj(interp, "", 0); scriptObjPtr = Jim_NewStringObj(interp, "", 0);
Jim_IncrRefCount(scriptObjPtr); Jim_IncrRefCount(scriptObjPtr);
while(1) { while (1) {
const char *str; const char *str;
char state; char state;
int len; int len;
@ -12457,7 +12457,7 @@ char* Jim_fgets( Jim_Interp *interp, char *s, int size, void *cookie )
Jim_Nvp * Jim_Nvp *
Jim_Nvp_name2value_simple( const Jim_Nvp *p, const char *name ) Jim_Nvp_name2value_simple( const Jim_Nvp *p, const char *name )
{ {
while( p->name ){ while ( p->name ){
if ( 0 == strcmp( name, p->name ) ){ if ( 0 == strcmp( name, p->name ) ){
break; break;
} }
@ -12469,7 +12469,7 @@ Jim_Nvp_name2value_simple( const Jim_Nvp *p, const char *name )
Jim_Nvp * Jim_Nvp *
Jim_Nvp_name2value_nocase_simple( const Jim_Nvp *p, const char *name ) Jim_Nvp_name2value_nocase_simple( const Jim_Nvp *p, const char *name )
{ {
while( p->name ){ while ( p->name ){
if ( 0 == strcasecmp( name, p->name ) ){ if ( 0 == strcasecmp( name, p->name ) ){
break; break;
} }
@ -12553,7 +12553,7 @@ Jim_Nvp_value2name_obj( Jim_Interp *interp, const Jim_Nvp *p, Jim_Obj *o, Jim_Nv
Jim_Nvp * Jim_Nvp *
Jim_Nvp_value2name_simple( const Jim_Nvp *p, int value ) Jim_Nvp_value2name_simple( const Jim_Nvp *p, int value )
{ {
while( p->name ){ while ( p->name ){
if ( value == p->value ){ if ( value == p->value ){
break; break;
} }
@ -12792,7 +12792,7 @@ Jim_SetResult_NvpUnknown( Jim_Interp *interp,
"Unknown param: %s, try one of: ", "Unknown param: %s, try one of: ",
Jim_GetString( param_value, NULL ) ); Jim_GetString( param_value, NULL ) );
} }
while( nvp->name ){ while ( nvp->name ){
const char *a; const char *a;
const char *b; const char *b;

View File

@ -241,7 +241,7 @@ typedef struct Jim_HashTableIterator {
entry->val = (ht)->type->valDup((ht)->privdata, _val_); \ entry->val = (ht)->type->valDup((ht)->privdata, _val_); \
else \ else \
entry->val = (_val_); \ entry->val = (_val_); \
} while(0) } while (0)
#define Jim_FreeEntryKey(ht, entry) \ #define Jim_FreeEntryKey(ht, entry) \
if ((ht)->type->keyDestructor) \ if ((ht)->type->keyDestructor) \
@ -252,7 +252,7 @@ typedef struct Jim_HashTableIterator {
entry->key = (ht)->type->keyDup((ht)->privdata, _key_); \ entry->key = (ht)->type->keyDup((ht)->privdata, _key_); \
else \ else \
entry->key = (_key_); \ entry->key = (_key_); \
} while(0) } while (0)
#define Jim_CompareHashKeys(ht, key1, key2) \ #define Jim_CompareHashKeys(ht, key1, key2) \
(((ht)->type->keyCompare) ? \ (((ht)->type->keyCompare) ? \
@ -555,7 +555,7 @@ typedef struct Jim_Interp {
Jim_IncrRefCount(_resultObjPtr_); \ Jim_IncrRefCount(_resultObjPtr_); \
Jim_DecrRefCount(i,(i)->result); \ Jim_DecrRefCount(i,(i)->result); \
(i)->result = _resultObjPtr_; \ (i)->result = _resultObjPtr_; \
} while(0) } while (0)
/* Reference structure. The interpreter pointer is held within privdata member in HashTable */ /* Reference structure. The interpreter pointer is held within privdata member in HashTable */
#define JIM_REFERENCE_TAGLEN 7 /* The tag is fixed-length, because the reference #define JIM_REFERENCE_TAGLEN 7 /* The tag is fixed-length, because the reference
@ -985,7 +985,7 @@ typedef struct jim_getopt {
* *
* Jim_GetOpt_Setup( &goi, interp, argc, argv ); * Jim_GetOpt_Setup( &goi, interp, argc, argv );
* *
* while( goi.argc ){ * while ( goi.argc ){
* e = Jim_GetOpt_Nvp( &goi, nvp_options, &n ); * e = Jim_GetOpt_Nvp( &goi, nvp_options, &n );
* if ( e != JIM_OK ){ * if ( e != JIM_OK ){
* Jim_GetOpt_NvpUnknown( &goi, nvp_options, 0 ); * Jim_GetOpt_NvpUnknown( &goi, nvp_options, 0 );
@ -1102,7 +1102,7 @@ JIM_STATIC int JIM_API( Jim_GetOpt_Nvp)( Jim_GetOptInfo *goi, const Jim_Nvp *loo
* Example: * Example:
* \code * \code
* *
* while( goi.argc ){ * while ( goi.argc ){
* // Get the next option * // Get the next option
* e = Jim_GetOpt_Nvp( &goi, cmd_options, &n ); * e = Jim_GetOpt_Nvp( &goi, cmd_options, &n );
* if ( e != JIM_OK ){ * if ( e != JIM_OK ){

View File

@ -142,7 +142,7 @@ unsigned jtag_tap_count_enabled(void)
{ {
jtag_tap_t *t = jtag_all_taps(); jtag_tap_t *t = jtag_all_taps();
unsigned n = 0; unsigned n = 0;
while(t) while (t)
{ {
if (t->enabled) if (t->enabled)
n++; n++;
@ -157,7 +157,7 @@ void jtag_tap_add(struct jtag_tap_s *t)
t->abs_chain_position = jtag_num_taps++; t->abs_chain_position = jtag_num_taps++;
jtag_tap_t **tap = &__jtag_all_taps; jtag_tap_t **tap = &__jtag_all_taps;
while(*tap != NULL) while (*tap != NULL)
tap = &(*tap)->next_tap; tap = &(*tap)->next_tap;
*tap = t; *tap = t;
} }

View File

@ -372,7 +372,7 @@ tap_state_t tap_state_by_name(const char *name)
#ifdef _DEBUG_JTAG_IO_ #ifdef _DEBUG_JTAG_IO_
#define JTAG_DEBUG_STATE_APPEND(buf, len, bit) \ #define JTAG_DEBUG_STATE_APPEND(buf, len, bit) \
do { buf[len] = bit ? '1' : '0'; } while(0) do { buf[len] = bit ? '1' : '0'; } while (0)
#define JTAG_DEBUG_STATE_PRINT(a, b, astr, bstr) \ #define JTAG_DEBUG_STATE_PRINT(a, b, astr, bstr) \
DEBUG_JTAG_IO("TAP/SM: %9s -> %5s\tTMS: %s\tTDI: %s", \ DEBUG_JTAG_IO("TAP/SM: %9s -> %5s\tTMS: %s\tTDI: %s", \
tap_state_name(a), tap_state_name(b), astr, bstr) tap_state_name(a), tap_state_name(b), astr, bstr)

View File

@ -128,7 +128,7 @@ ep1_generic_commandl(
usb_buffer_p = usb_buffer; usb_buffer_p = usb_buffer;
va_start(ap, length); va_start(ap, length);
while(length > 0) { while (length > 0) {
*usb_buffer_p++ = va_arg(ap, int); *usb_buffer_p++ = va_arg(ap, int);
length--; length--;
} }
@ -175,7 +175,7 @@ ep1_memory_read(
remain = length; remain = length;
count = 0; count = 0;
while(remain) { while (remain) {
if (remain > sizeof(usb_buffer)) { if (remain > sizeof(usb_buffer)) {
length = sizeof(usb_buffer); length = sizeof(usb_buffer);
} else { } else {
@ -236,7 +236,7 @@ ep1_memory_write(
remain = length; remain = length;
count = 0; count = 0;
while(remain) { while (remain) {
if (remain > (sizeof(usb_buffer) - 4)) { if (remain > (sizeof(usb_buffer) - 4)) {
length = (sizeof(usb_buffer) - 4); length = (sizeof(usb_buffer) - 4);
} else { } else {
@ -299,7 +299,7 @@ ep1_memory_writel(
buffer_p = buffer; buffer_p = buffer;
va_start(ap, length); va_start(ap, length);
while(remain > 0) { while (remain > 0) {
*buffer_p++ = va_arg(ap, int); *buffer_p++ = va_arg(ap, int);
remain--; remain--;
} }
@ -348,7 +348,7 @@ dtc_load_from_buffer(
); );
if (usb_err < 0) return(usb_err); if (usb_err < 0) return(usb_err);
while(length) { while (length) {
if (length < sizeof(*header)) { if (length < sizeof(*header)) {
LOG_ERROR("Malformed DTC image\n"); LOG_ERROR("Malformed DTC image\n");
exit(1); exit(1);
@ -1169,7 +1169,7 @@ rlink_scan(
x = 0; x = 0;
dtc_mask = 1 << (extra_bits - 1); dtc_mask = 1 << (extra_bits - 1);
while(extra_bits--) { while (extra_bits--) {
if (*tdi_p & tdi_mask) { if (*tdi_p & tdi_mask) {
x |= dtc_mask; x |= dtc_mask;
} }
@ -1190,7 +1190,7 @@ rlink_scan(
} }
/* Loop scheduling full bytes into the DTC command buffer */ /* Loop scheduling full bytes into the DTC command buffer */
while(byte_bits) { while (byte_bits) {
if (type == SCAN_IN) { if (type == SCAN_IN) {
/* make sure there's room for stop and byte op */ /* make sure there's room for stop and byte op */
x = (dtc_queue.cmd_index >= sizeof(dtc_queue.cmd_buffer) - (1 + 1)); x = (dtc_queue.cmd_index >= sizeof(dtc_queue.cmd_buffer) - (1 + 1));
@ -1260,7 +1260,7 @@ rlink_scan(
x = 0; x = 0;
dtc_mask = 1 << (8 - 1); dtc_mask = 1 << (8 - 1);
while(chunk_bits--) { while (chunk_bits--) {
if (*tdi_p & tdi_mask) { if (*tdi_p & tdi_mask) {
x |= dtc_mask; x |= dtc_mask;
} }
@ -1315,7 +1315,7 @@ rlink_scan(
x = 0; x = 0;
dtc_mask = 1 << (8 - 1); dtc_mask = 1 << (8 - 1);
while(extra_bits--) { while (extra_bits--) {
if (*tdi_p & tdi_mask) { if (*tdi_p & tdi_mask) {
x |= dtc_mask; x |= dtc_mask;
} }
@ -1682,7 +1682,7 @@ int rlink_init(void)
LOG_DEBUG("interface claimed!\n"); LOG_DEBUG("interface claimed!\n");
break; break;
} }
} while(--retries); } while (--retries);
if (!i) if (!i)
{ {
@ -1695,7 +1695,7 @@ int rlink_init(void)
success=1; success=1;
} }
} }
} while(0); } while (0);
} }
} }
} }

View File

@ -367,7 +367,7 @@ static int jim_newtap_cmd( Jim_GetOptInfo *goi )
/* clear them as we find them */ /* clear them as we find them */
reqbits = (NTREQ_IRLEN | NTREQ_IRCAPTURE | NTREQ_IRMASK); reqbits = (NTREQ_IRLEN | NTREQ_IRCAPTURE | NTREQ_IRMASK);
while( goi->argc ){ while ( goi->argc ){
e = Jim_GetOpt_Nvp( goi, opts, &n ); e = Jim_GetOpt_Nvp( goi, opts, &n );
if ( e != JIM_OK ){ if ( e != JIM_OK ){
Jim_GetOpt_NvpUnknown( goi, opts, 0 ); Jim_GetOpt_NvpUnknown( goi, opts, 0 );
@ -441,7 +441,7 @@ static int jim_newtap_cmd( Jim_GetOptInfo *goi )
break; break;
} }
} /* switch(n->value) */ } /* switch(n->value) */
} /* while( goi->argc ) */ } /* while ( goi->argc ) */
/* default is enabled-after-reset */ /* default is enabled-after-reset */
pTap->enabled = !pTap->disabled_after_reset; pTap->enabled = !pTap->disabled_after_reset;
@ -861,7 +861,7 @@ static int handle_scan_chain_command(struct command_context_s *cmd_ctx, char *cm
command_print(cmd_ctx, " TapName | Enabled | IdCode Expected IrLen IrCap IrMask Instr "); command_print(cmd_ctx, " TapName | Enabled | IdCode Expected IrLen IrCap IrMask Instr ");
command_print(cmd_ctx, "---|--------------------|---------|------------|------------|------|------|------|---------"); command_print(cmd_ctx, "---|--------------------|---------|------------|------------|------|------|------|---------");
while( tap ){ while ( tap ){
uint32_t expected, expected_mask, cur_instr, ii; uint32_t expected, expected_mask, cur_instr, ii;
expected = buf_get_u32(tap->expected, 0, tap->ir_length); expected = buf_get_u32(tap->expected, 0, tap->ir_length);
expected_mask = buf_get_u32(tap->expected_mask, 0, tap->ir_length); expected_mask = buf_get_u32(tap->expected_mask, 0, tap->ir_length);

View File

@ -116,7 +116,7 @@ int remove_connection(service_t *service, connection_t *connection)
connection_t *c; connection_t *c;
/* find connection */ /* find connection */
while((c = *p)) while ((c = *p))
{ {
if (c->fd == connection->fd) if (c->fd == connection->fd)
{ {
@ -237,7 +237,7 @@ int remove_service(unsigned short port)
service_t *c; service_t *c;
/* find service */ /* find service */
while((c = *p)) while ((c = *p))
{ {
if (c->port == port) if (c->port == port)
{ {
@ -264,7 +264,7 @@ int remove_services(void)
service_t *c = services; service_t *c = services;
/* loop service */ /* loop service */
while(c) while (c)
{ {
service_t *next = c->next; service_t *next = c->next;
@ -310,7 +310,7 @@ int server_loop(command_context_t *command_context)
tv.tv_sec = 0; tv.tv_sec = 0;
tv.tv_usec = 10000; tv.tv_usec = 10000;
while(!shutdown_openocd) while (!shutdown_openocd)
{ {
/* monitor sockets for acitvity */ /* monitor sockets for acitvity */
fd_max = 0; fd_max = 0;

View File

@ -30,7 +30,7 @@
#if 0 #if 0
#define JTAG_DEBUG(expr ...) DEBUG(expr) #define JTAG_DEBUG(expr ...) DEBUG(expr)
#else #else
#define JTAG_DEBUG(expr ...) do {} while(0) #define JTAG_DEBUG(expr ...) do {} while (0)
#endif #endif
/* /*

View File

@ -908,7 +908,7 @@ int cortex_m3_set_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
if (breakpoint->type == BKPT_HARD) if (breakpoint->type == BKPT_HARD)
{ {
while(comparator_list[fp_num].used && (fp_num < cortex_m3->fp_num_code)) while (comparator_list[fp_num].used && (fp_num < cortex_m3->fp_num_code))
fp_num++; fp_num++;
if (fp_num >= cortex_m3->fp_num_code) if (fp_num >= cortex_m3->fp_num_code)
{ {
@ -1091,7 +1091,7 @@ int cortex_m3_set_watchpoint(struct target_s *target, watchpoint_t *watchpoint)
if (watchpoint->mask == 0xffffffffu) if (watchpoint->mask == 0xffffffffu)
{ {
while(comparator_list[dwt_num].used && (dwt_num < cortex_m3->dwt_num_comp)) while (comparator_list[dwt_num].used && (dwt_num < cortex_m3->dwt_num_comp))
dwt_num++; dwt_num++;
if (dwt_num >= cortex_m3->dwt_num_comp) if (dwt_num >= cortex_m3->dwt_num_comp)
{ {

View File

@ -61,7 +61,7 @@ begin_ejtag_dma_read:
do { do {
ejtag_ctrl = EJTAG_CTRL_DMAACC | ejtag_info->ejtag_ctrl; ejtag_ctrl = EJTAG_CTRL_DMAACC | ejtag_info->ejtag_ctrl;
mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl); mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl);
} while(ejtag_ctrl & EJTAG_CTRL_DSTRT); } while (ejtag_ctrl & EJTAG_CTRL_DSTRT);
/* Read Data */ /* Read Data */
mips_ejtag_set_instr(ejtag_info, EJTAG_INST_DATA, NULL); mips_ejtag_set_instr(ejtag_info, EJTAG_INST_DATA, NULL);
@ -107,7 +107,7 @@ begin_ejtag_dma_read_h:
do { do {
ejtag_ctrl = EJTAG_CTRL_DMAACC | ejtag_info->ejtag_ctrl; ejtag_ctrl = EJTAG_CTRL_DMAACC | ejtag_info->ejtag_ctrl;
mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl); mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl);
} while(ejtag_ctrl & EJTAG_CTRL_DSTRT); } while (ejtag_ctrl & EJTAG_CTRL_DSTRT);
/* Read Data */ /* Read Data */
mips_ejtag_set_instr(ejtag_info, EJTAG_INST_DATA, NULL); mips_ejtag_set_instr(ejtag_info, EJTAG_INST_DATA, NULL);
@ -159,7 +159,7 @@ begin_ejtag_dma_read_b:
do { do {
ejtag_ctrl = EJTAG_CTRL_DMAACC | ejtag_info->ejtag_ctrl; ejtag_ctrl = EJTAG_CTRL_DMAACC | ejtag_info->ejtag_ctrl;
mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl); mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl);
} while(ejtag_ctrl & EJTAG_CTRL_DSTRT); } while (ejtag_ctrl & EJTAG_CTRL_DSTRT);
/* Read Data */ /* Read Data */
mips_ejtag_set_instr(ejtag_info, EJTAG_INST_DATA, NULL); mips_ejtag_set_instr(ejtag_info, EJTAG_INST_DATA, NULL);
@ -226,7 +226,7 @@ begin_ejtag_dma_write:
do { do {
ejtag_ctrl = EJTAG_CTRL_DMAACC | ejtag_info->ejtag_ctrl; ejtag_ctrl = EJTAG_CTRL_DMAACC | ejtag_info->ejtag_ctrl;
mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl); mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl);
} while(ejtag_ctrl & EJTAG_CTRL_DSTRT); } while (ejtag_ctrl & EJTAG_CTRL_DSTRT);
/* Clear DMA & Check DERR */ /* Clear DMA & Check DERR */
mips_ejtag_set_instr(ejtag_info, EJTAG_INST_CONTROL, NULL); mips_ejtag_set_instr(ejtag_info, EJTAG_INST_CONTROL, NULL);
@ -277,7 +277,7 @@ begin_ejtag_dma_write_h:
do { do {
ejtag_ctrl = EJTAG_CTRL_DMAACC | ejtag_info->ejtag_ctrl; ejtag_ctrl = EJTAG_CTRL_DMAACC | ejtag_info->ejtag_ctrl;
mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl); mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl);
} while(ejtag_ctrl & EJTAG_CTRL_DSTRT); } while (ejtag_ctrl & EJTAG_CTRL_DSTRT);
/* Clear DMA & Check DERR */ /* Clear DMA & Check DERR */
mips_ejtag_set_instr(ejtag_info, EJTAG_INST_CONTROL, NULL); mips_ejtag_set_instr(ejtag_info, EJTAG_INST_CONTROL, NULL);
@ -329,7 +329,7 @@ begin_ejtag_dma_write_b:
do { do {
ejtag_ctrl = EJTAG_CTRL_DMAACC | ejtag_info->ejtag_ctrl; ejtag_ctrl = EJTAG_CTRL_DMAACC | ejtag_info->ejtag_ctrl;
mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl); mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl);
} while(ejtag_ctrl & EJTAG_CTRL_DSTRT); } while (ejtag_ctrl & EJTAG_CTRL_DSTRT);
/* Clear DMA & Check DERR */ /* Clear DMA & Check DERR */
mips_ejtag_set_instr(ejtag_info, EJTAG_INST_CONTROL, NULL); mips_ejtag_set_instr(ejtag_info, EJTAG_INST_CONTROL, NULL);

View File

@ -509,7 +509,7 @@ int mips_m4k_set_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
{ {
int bp_num = 0; int bp_num = 0;
while(comparator_list[bp_num].used && (bp_num < mips32->num_inst_bpoints)) while (comparator_list[bp_num].used && (bp_num < mips32->num_inst_bpoints))
bp_num++; bp_num++;
if (bp_num >= mips32->num_inst_bpoints) if (bp_num >= mips32->num_inst_bpoints)
{ {

View File

@ -244,7 +244,7 @@ static int max_target_number(void)
x = -1; x = -1;
t = all_targets; t = all_targets;
while( t ){ while ( t ){
if ( x < t->target_number ){ if ( x < t->target_number ){
x = (t->target_number)+1; x = (t->target_number)+1;
} }
@ -262,7 +262,7 @@ static int new_target_number(void)
/* number is 0 based */ /* number is 0 based */
x = -1; x = -1;
t = all_targets; t = all_targets;
while(t){ while (t){
if ( x < t->target_number ){ if ( x < t->target_number ){
x = t->target_number; x = t->target_number;
} }
@ -1728,7 +1728,7 @@ static int handle_reg_command(struct command_context_s *cmd_ctx, char *cmd, char
reg_cache_t *cache = target->reg_cache; reg_cache_t *cache = target->reg_cache;
count = 0; count = 0;
while(cache) while (cache)
{ {
int i; int i;
for (i = 0; i < cache->num_regs; i++) for (i = 0; i < cache->num_regs; i++)
@ -1759,7 +1759,7 @@ static int handle_reg_command(struct command_context_s *cmd_ctx, char *cmd, char
reg_cache_t *cache = target->reg_cache; reg_cache_t *cache = target->reg_cache;
count = 0; count = 0;
while(cache) while (cache)
{ {
int i; int i;
for (i = 0; i < cache->num_regs; i++) for (i = 0; i < cache->num_regs; i++)
@ -3378,7 +3378,7 @@ void target_handle_event( target_t *target, enum target_event e )
teap = target->event_action; teap = target->event_action;
done = 0; done = 0;
while( teap ){ while ( teap ){
if ( teap->event == e ){ if ( teap->event == e ){
done = 1; done = 1;
LOG_DEBUG( "target: (%d) %s (%s) event: %d (%s) action: %s\n", LOG_DEBUG( "target: (%d) %s (%s) event: %d (%s) action: %s\n",
@ -3437,7 +3437,7 @@ static int target_configure( Jim_GetOptInfo *goi, target_t *target )
int e; int e;
/* parse config or cget options ... */ /* parse config or cget options ... */
while( goi->argc > 0 ){ while ( goi->argc > 0 ){
Jim_SetEmptyResult( goi->interp ); Jim_SetEmptyResult( goi->interp );
/* Jim_GetOpt_Debug( goi ); */ /* Jim_GetOpt_Debug( goi ); */
@ -3505,7 +3505,7 @@ static int target_configure( Jim_GetOptInfo *goi, target_t *target )
teap = target->event_action; teap = target->event_action;
/* replace existing? */ /* replace existing? */
while( teap ){ while ( teap ){
if ( teap->event == (enum target_event)n->value ){ if ( teap->event == (enum target_event)n->value ){
break; break;
} }
@ -3687,7 +3687,7 @@ static int target_configure( Jim_GetOptInfo *goi, target_t *target )
/* loop for more e*/ /* loop for more e*/
break; break;
} }
} /* while( goi->argc ) */ } /* while ( goi->argc ) */
/* done - we return */ /* done - we return */
@ -3881,7 +3881,7 @@ static int tcl_target_func( Jim_Interp *interp, int argc, Jim_Obj *const *argv )
/* convert to "bytes" */ /* convert to "bytes" */
c = c * b; c = c * b;
/* count is now in 'BYTES' */ /* count is now in 'BYTES' */
while( c > 0 ){ while ( c > 0 ){
y = c; y = c;
if ( y > 16 ){ if ( y > 16 ){
y = 16; y = 16;
@ -3934,7 +3934,7 @@ static int tcl_target_func( Jim_Interp *interp, int argc, Jim_Obj *const *argv )
} }
} }
/* space pad */ /* space pad */
while( x < 16 ){ while ( x < 16 ){
target_buf[x] = ' '; target_buf[x] = ' ';
x++; x++;
} }
@ -4063,7 +4063,7 @@ static int tcl_target_func( Jim_Interp *interp, int argc, Jim_Obj *const *argv )
target->cmd_name ); target->cmd_name );
command_print( cmd_ctx, "%-25s | Body", "Event"); command_print( cmd_ctx, "%-25s | Body", "Event");
command_print( cmd_ctx, "------------------------- | ----------------------------------------"); command_print( cmd_ctx, "------------------------- | ----------------------------------------");
while( teap ){ while ( teap ){
command_print( cmd_ctx, command_print( cmd_ctx,
"%-25s | %s", "%-25s | %s",
Jim_Nvp_value2name_simple( nvp_target_event, teap->event )->name, Jim_Nvp_value2name_simple( nvp_target_event, teap->event )->name,
@ -4236,7 +4236,7 @@ static int target_create( Jim_GetOptInfo *goi )
{ {
target_t **tpp; target_t **tpp;
tpp = &(all_targets); tpp = &(all_targets);
while( *tpp ){ while ( *tpp ){
tpp = &( (*tpp)->next ); tpp = &( (*tpp)->next );
} }
*tpp = target; *tpp = target;
@ -4326,7 +4326,7 @@ static int jim_target( Jim_Interp *interp, int argc, Jim_Obj *const *argv )
} }
Jim_SetResult( goi.interp, Jim_NewListObj( goi.interp, NULL, 0 ) ); Jim_SetResult( goi.interp, Jim_NewListObj( goi.interp, NULL, 0 ) );
target = all_targets; target = all_targets;
while( target ){ while ( target ){
Jim_ListAppendElement( goi.interp, Jim_ListAppendElement( goi.interp,
Jim_GetResult(goi.interp), Jim_GetResult(goi.interp),
Jim_NewStringObj( goi.interp, target->cmd_name, -1 ) ); Jim_NewStringObj( goi.interp, target->cmd_name, -1 ) );

View File

@ -261,7 +261,7 @@ static int handle_xsvf_command(struct command_context_s *cmd_ctx, char *cmd, cha
LOG_USER("xsvf processing file: \"%s\"", filename); LOG_USER("xsvf processing file: \"%s\"", filename);
while( read(xsvf_fd, &opcode, 1) > 0 ) while ( read(xsvf_fd, &opcode, 1) > 0 )
{ {
/* record the position of the just read opcode within the file */ /* record the position of the just read opcode within the file */
file_offset = lseek(xsvf_fd, 0, SEEK_CUR) - 1; file_offset = lseek(xsvf_fd, 0, SEEK_CUR) - 1;

View File

@ -9,7 +9,7 @@ int main(void)
mPORTDClearBits(BIT_2); mPORTDClearBits(BIT_2);
mPORTDSetPinsDigitalOut(BIT_2); mPORTDSetPinsDigitalOut(BIT_2);
while(1) while (1)
{ {
for(i = 0; i < 500000; i++) for(i = 0; i < 500000; i++)
mPORTDToggleBits(BIT_0); mPORTDToggleBits(BIT_0);

View File

@ -48,13 +48,13 @@ __gccmain()
void exit(int exit_code) void exit(int exit_code)
{ {
while(1); while (1);
} /* EXIT */ } /* EXIT */
atexit() atexit()
{ {
while(1); while (1);
} /* ATEXIT */ } /* ATEXIT */

View File

@ -29,7 +29,7 @@ int main (void)
{ {
volatile unsigned char *led = ((volatile unsigned char *)0xB6020000); volatile unsigned char *led = ((volatile unsigned char *)0xB6020000);
while(1) while (1)
{ {
*led = 0xFF; *led = 0xFF;
delay(); delay();
@ -46,13 +46,13 @@ __gccmain()
void exit(int exit_code) void exit(int exit_code)
{ {
while(1); while (1);
} /* EXIT */ } /* EXIT */
atexit() atexit()
{ {
while(1); while (1);
} /* ATEXIT */ } /* ATEXIT */