X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Ftarget%2Fhla_target.c;h=65e056863fe530354b59f795ec590cd6b7050214;hp=937391b3441ca1fcb7c7c092b6569e015a699f08;hb=4315142ea0d7035fe117b9e344beaf98c91ee35c;hpb=b00b9f2d7d2805ce0d038b2149b636c0576ee9ec diff --git a/src/target/hla_target.c b/src/target/hla_target.c index 937391b344..65e056863f 100644 --- a/src/target/hla_target.c +++ b/src/target/hla_target.c @@ -777,13 +777,6 @@ static int adapter_write_memory(struct target *target, uint32_t address, return ERROR_OK; } -static int adapter_bulk_write_memory(struct target *target, - uint32_t address, uint32_t count, - const uint8_t *buffer) -{ - return adapter_write_memory(target, address, 4, count, buffer); -} - static const struct command_registration adapter_command_handlers[] = { { .chain = arm_command_handlers, @@ -815,7 +808,6 @@ struct target_type hla_target = { .read_memory = adapter_read_memory, .write_memory = adapter_write_memory, - .bulk_write_memory = adapter_bulk_write_memory, .checksum_memory = armv7m_checksum_memory, .blank_check_memory = armv7m_blank_check_memory,