- Replace 'while(' with 'while ('.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2358 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -156,7 +156,7 @@ static int avr_jtagprg_chiperase(avr_common_t *avr)
|
||||
return ERROR_FAIL;
|
||||
}
|
||||
LOG_DEBUG("poll_value = 0x%04" PRIx32 "", poll_value);
|
||||
}while(!(poll_value & 0x0200));
|
||||
}while (!(poll_value & 0x0200));
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
@@ -203,7 +203,7 @@ static int avr_jtagprg_writeflashpage(avr_common_t *avr, uint8_t *page_buf, uint
|
||||
return ERROR_FAIL;
|
||||
}
|
||||
LOG_DEBUG("poll_value = 0x%04" PRIx32 "", poll_value);
|
||||
}while(!(poll_value & 0x0200));
|
||||
}while (!(poll_value & 0x0200));
|
||||
|
||||
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;
|
||||
while(count > 0)
|
||||
while (count > 0)
|
||||
{
|
||||
if (count > page_size)
|
||||
{
|
||||
|
||||
@@ -452,7 +452,7 @@ static int pic32mx_write_block(struct flash_bank_s *bank, uint8_t *buffer, uint3
|
||||
|
||||
target_free_working_area(target, source);
|
||||
|
||||
while(count > 0)
|
||||
while (count > 0)
|
||||
{
|
||||
uint32_t value;
|
||||
memcpy(&value, buffer, sizeof(uint32_t));
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
while(flash_fmc & FMC_ERASE);
|
||||
while (flash_fmc & FMC_ERASE);
|
||||
|
||||
/* Check acess violations */
|
||||
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);
|
||||
}
|
||||
while(flash_fmc & FMC_COMT);
|
||||
while (flash_fmc & FMC_COMT);
|
||||
|
||||
/* Check acess violations */
|
||||
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};
|
||||
int i = 0;
|
||||
|
||||
while(bytes_remaining > 0)
|
||||
while (bytes_remaining > 0)
|
||||
{
|
||||
last_word[i++] = *(buffer + bytes_written);
|
||||
bytes_remaining--;
|
||||
|
||||
@@ -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};
|
||||
int i = 0;
|
||||
|
||||
while(bytes_remaining > 0)
|
||||
while (bytes_remaining > 0)
|
||||
{
|
||||
last_dword[i++] = *(buffer + bytes_written);
|
||||
bytes_remaining--;
|
||||
|
||||
@@ -607,7 +607,7 @@ static int str9x_write(struct flash_bank_s *bank,
|
||||
uint8_t last_halfword[2] = {0xff, 0xff};
|
||||
int i = 0;
|
||||
|
||||
while(bytes_remaining > 0)
|
||||
while (bytes_remaining > 0)
|
||||
{
|
||||
last_halfword[i++] = *(buffer + bytes_written);
|
||||
bytes_remaining--;
|
||||
|
||||
@@ -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_execute_queue();
|
||||
|
||||
} while(!(status & ISC_STATUS_BUSY));
|
||||
} while (!(status & ISC_STATUS_BUSY));
|
||||
|
||||
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);
|
||||
|
||||
} while(!(status & ISC_STATUS_BUSY));
|
||||
} while (!(status & ISC_STATUS_BUSY));
|
||||
|
||||
if ((status & ISC_STATUS_ERROR) != STR9XPEC_ISC_SUCCESS)
|
||||
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};
|
||||
int i = 0;
|
||||
|
||||
while(bytes_remaining > 0)
|
||||
while (bytes_remaining > 0)
|
||||
{
|
||||
last_dword[i++] = *(buffer + bytes_written);
|
||||
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);
|
||||
|
||||
} while(!(status & ISC_STATUS_BUSY));
|
||||
} while (!(status & ISC_STATUS_BUSY));
|
||||
|
||||
if ((status & ISC_STATUS_ERROR) != STR9XPEC_ISC_SUCCESS)
|
||||
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_execute_queue();
|
||||
|
||||
} while(!(status & ISC_STATUS_BUSY));
|
||||
} while (!(status & ISC_STATUS_BUSY));
|
||||
|
||||
str9xpec_isc_disable(bank);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user