diff options
author | Øyvind Harboe <oyvind.harboe@zylin.com> | 2011-04-01 13:02:24 +0200 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2011-04-01 13:02:24 +0200 |
commit | 3b7c9585db2dd49b48123d50e9e8af7bc527be52 (patch) | |
tree | 543433d697a4131e362ff6cf158324479dd89af8 /src/target/avr32_ap7k.c | |
parent | a0b83e82f7fa1833f7ac137d052335c55d1a4223 (diff) | |
parent | 977df18f50f0f4d2310787787c03d83c2498da1a (diff) | |
download | openocd_libswd-3b7c9585db2dd49b48123d50e9e8af7bc527be52.tar.gz openocd_libswd-3b7c9585db2dd49b48123d50e9e8af7bc527be52.tar.bz2 openocd_libswd-3b7c9585db2dd49b48123d50e9e8af7bc527be52.tar.xz openocd_libswd-3b7c9585db2dd49b48123d50e9e8af7bc527be52.zip |
Merge remote branch 'origin/master' into HEAD
Diffstat (limited to 'src/target/avr32_ap7k.c')
-rw-r--r-- | src/target/avr32_ap7k.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/avr32_ap7k.c b/src/target/avr32_ap7k.c index ed10847a..70e5129d 100644 --- a/src/target/avr32_ap7k.c +++ b/src/target/avr32_ap7k.c @@ -515,7 +515,7 @@ static int avr32_ap7k_read_memory(struct target *target, uint32_t address, } static int avr32_ap7k_write_memory(struct target *target, uint32_t address, - uint32_t size, uint32_t count, uint8_t *buffer) + uint32_t size, uint32_t count, const uint8_t *buffer) { struct avr32_ap7k_common *ap7k = target_to_ap7k(target); @@ -600,7 +600,7 @@ static int avr32_ap7k_examine(struct target *target) } static int avr32_ap7k_bulk_write_memory(struct target *target, uint32_t address, - uint32_t count, uint8_t *buffer) + uint32_t count, const uint8_t *buffer) { LOG_ERROR("%s: implement me", __func__); |