aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorGareth McMullin2015-04-04 19:18:05 -0700
committerGareth McMullin2015-04-11 16:05:41 -0700
commit09b781f1c1593025e6d3157573343f4431f5f5b6 (patch)
tree690ab79fdf4c3cc48e927e3dfbf6957684f5db10 /src/include
parent3d8b34f180eaa9bfe021186b9e20a8a551b35515 (diff)
target: Remove old flash interface.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/target.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/include/target.h b/src/include/target.h
index 96b5506..f86714b 100644
--- a/src/include/target.h
+++ b/src/include/target.h
@@ -182,17 +182,10 @@ struct target_s {
uint32_t idcode;
/* Target memory map */
- const char *xml_mem_map;
char *dyn_mem_map;
struct target_ram *ram;
struct target_flash *flash;
- /* DEPRECATED: Flash memory access functions */
- int (*flash_erase)(target *t, uint32_t addr, size_t len);
- int (*flash_write)(target *t, uint32_t dest,
- const uint8_t *src, size_t len);
- int (*flash_done)(target *t);
-
/* Host I/O support */
void (*hostio_reply)(target *t, int32_t retcode, uint32_t errcode);