aboutsummaryrefslogtreecommitdiff
path: root/src/target
diff options
context:
space:
mode:
Diffstat (limited to 'src/target')
-rw-r--r--src/target/target.c6
-rw-r--r--src/target/target.h10
2 files changed, 0 insertions, 16 deletions
diff --git a/src/target/target.c b/src/target/target.c
index 04e375b8..ed1a2cc4 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -970,12 +970,6 @@ int target_write_phys_memory(struct target *target,
return target->type->write_phys_memory(target, address, size, count, buffer);
}
-int target_bulk_write_memory(struct target *target,
- uint32_t address, uint32_t count, const uint8_t *buffer)
-{
- return target->type->bulk_write_memory(target, address, count, buffer);
-}
-
static int target_bulk_write_memory_default(struct target *target,
uint32_t address, uint32_t count, const uint8_t *buffer)
{
diff --git a/src/target/target.h b/src/target/target.h
index 3baafbe7..e6b931dd 100644
--- a/src/target/target.h
+++ b/src/target/target.h
@@ -485,16 +485,6 @@ int target_write_memory(struct target *target,
int target_write_phys_memory(struct target *target,
uint32_t address, uint32_t size, uint32_t count, const uint8_t *buffer);
-/**
- * Write @a count items of 4 bytes to the memory of @a target at
- * the @a address given. Because it operates only on whole words,
- * this should be faster than target_write_memory().
- *
- * This routine is wrapper for target->type->bulk_write_memory.
- */
-int target_bulk_write_memory(struct target *target,
- uint32_t address, uint32_t count, const uint8_t *buffer);
-
/*
* Write to target memory using the virtual address.
*