summaryrefslogtreecommitdiff
path: root/src/flash/nor/pic32mx.c
diff options
context:
space:
mode:
authorSpencer Oliver <ntfreak@users.sourceforge.net>2010-07-19 20:33:04 +0100
committerSpencer Oliver <ntfreak@users.sourceforge.net>2010-07-20 09:02:42 +0100
commit260eb4548b01da3ecd2cd146bb22a0f36df1a038 (patch)
treef261cdbd58be2eaed8eac554238c599967c98725 /src/flash/nor/pic32mx.c
parentee17d5c48eaca42438663405ff6d090a391fc9e6 (diff)
downloadopenocd+libswd-260eb4548b01da3ecd2cd146bb22a0f36df1a038.tar.gz
openocd+libswd-260eb4548b01da3ecd2cd146bb22a0f36df1a038.tar.bz2
openocd+libswd-260eb4548b01da3ecd2cd146bb22a0f36df1a038.tar.xz
openocd+libswd-260eb4548b01da3ecd2cd146bb22a0f36df1a038.zip
flash: remove algorithm exit_point address for supported targets
For the above targets the exit_point is optional when used with run_algorithm, so remove it. This makes updating the algorithm less error prone. Signed-off-by: Spencer Oliver <ntfreak@users.sourceforge.net>
Diffstat (limited to 'src/flash/nor/pic32mx.c')
-rw-r--r--src/flash/nor/pic32mx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/pic32mx.c b/src/flash/nor/pic32mx.c
index 2fe864d4..363f49e8 100644
--- a/src/flash/nor/pic32mx.c
+++ b/src/flash/nor/pic32mx.c
@@ -360,7 +360,7 @@ static int pic32mx_write_block(struct flash_bank *bank, uint8_t *buffer,
if ((retval = target_run_algorithm(target, 0, NULL, 3, reg_params,
pic32mx_info->write_algorithm->address,
- pic32mx_info->write_algorithm->address + (sizeof(pic32mx_flash_write_code) - 76),
+ 0,
10000, &mips32_info)) != ERROR_OK)
{
LOG_ERROR("error executing pic32mx flash write algorithm");