summaryrefslogtreecommitdiff
path: root/src/flash/str9x.c
diff options
context:
space:
mode:
authorntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-06-03 19:36:42 +0000
committerntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-06-03 19:36:42 +0000
commita37e3836e22a12a73063bb739002337de9c0c4e7 (patch)
treed6626e9c3dfb357f6b0f4b28353f0393180622b5 /src/flash/str9x.c
parent3727a2103a772055b61bc56ec095432505aeb2e5 (diff)
downloadopenocd+libswd-a37e3836e22a12a73063bb739002337de9c0c4e7.tar.gz
openocd+libswd-a37e3836e22a12a73063bb739002337de9c0c4e7.tar.bz2
openocd+libswd-a37e3836e22a12a73063bb739002337de9c0c4e7.tar.xz
openocd+libswd-a37e3836e22a12a73063bb739002337de9c0c4e7.zip
- str9 driver remove the duplicate target_free_working_area and reformat spaces to tabs.
- lpc2000 driver reorder function so as to not require goto, plus refornat spaces to tabs. git-svn-id: svn://svn.berlios.de/openocd/trunk@699 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/flash/str9x.c')
-rw-r--r--src/flash/str9x.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/flash/str9x.c b/src/flash/str9x.c
index 2904d565..96cad399 100644
--- a/src/flash/str9x.c
+++ b/src/flash/str9x.c
@@ -397,16 +397,15 @@ int str9x_write_block(struct flash_bank_s *bank, u8 *buffer, u32 offset, u32 cou
if ((retval = target->type->run_algorithm(target, 0, NULL, 4, reg_params, str9x_info->write_algorithm->address, str9x_info->write_algorithm->address + (18 * 4), 10000, &armv4_5_info)) != ERROR_OK)
{
- target_free_working_area(target, source);
- target_free_working_area(target, str9x_info->write_algorithm);
LOG_ERROR("error executing str9x flash write algorithm");
+ retval = ERROR_FLASH_OPERATION_FAILED;
break;
}
if (buf_get_u32(reg_params[3].value, 0, 32) != 0x80)
{
retval = ERROR_FLASH_OPERATION_FAILED;
- break;
+ break;
}
buffer += thisrun_count * 2;