From: oharboe Date: Sun, 1 Mar 2009 21:04:00 +0000 (+0000) Subject: Nicolas Pitre nico at cam.org fix feroceon_bulk_write_memory() wrt uploaded code X-Git-Tag: v0.2.0~1110 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=6853abeb901960c31a20eedf469b6dcb5c45dd56 Nicolas Pitre nico at cam.org fix feroceon_bulk_write_memory() wrt uploaded code git-svn-id: svn://svn.berlios.de/openocd/trunk@1392 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/src/target/feroceon.c b/src/target/feroceon.c index df0feb0d43..08512a4b81 100644 --- a/src/target/feroceon.c +++ b/src/target/feroceon.c @@ -569,7 +569,7 @@ int feroceon_bulk_write_memory(target_t *target, u32 address, u32 count, u8 *buf target_buffer_set_u32(target, dcc_code_buf + i*4, dcc_code[i]); /* write DCC code to working area */ - if((retval = target->type->write_memory(target, arm7_9->dcc_working_area->address, 4, dcc_size, dcc_code_buf)) != ERROR_OK) + if((retval = target->type->write_memory(target, arm7_9->dcc_working_area->address, 4, dcc_size/4, dcc_code_buf)) != ERROR_OK) { return retval; }