summaryrefslogtreecommitdiff
path: root/src/flash/aduc702x.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:41:07 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:10 -0800
commit15e8e4530866454c18c5d91ad9e867f339c2e82b (patch)
tree71e6415b9717a3e93d219f06d02f81102e112c2b /src/flash/aduc702x.c
parent056fcdb540f0ab9a404f3b5de72fd707eb146603 (diff)
downloadopenocd+libswd-15e8e4530866454c18c5d91ad9e867f339c2e82b.tar.gz
openocd+libswd-15e8e4530866454c18c5d91ad9e867f339c2e82b.tar.bz2
openocd+libswd-15e8e4530866454c18c5d91ad9e867f339c2e82b.tar.xz
openocd+libswd-15e8e4530866454c18c5d91ad9e867f339c2e82b.zip
armv4_5_algorithm_t -> struct armv4_5_algorithm
Remove misleading typedef and redundant suffix from struct armv4_5_algorithm.
Diffstat (limited to 'src/flash/aduc702x.c')
-rw-r--r--src/flash/aduc702x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/aduc702x.c b/src/flash/aduc702x.c
index 931db5a7..ebda702a 100644
--- a/src/flash/aduc702x.c
+++ b/src/flash/aduc702x.c
@@ -164,7 +164,7 @@ static int aduc702x_write_block(struct flash_bank_s *bank, uint8_t *buffer, uint
working_area_t *source;
uint32_t address = bank->base + offset;
struct reg_param reg_params[6];
- armv4_5_algorithm_t armv4_5_info;
+ struct armv4_5_algorithm armv4_5_info;
int retval = ERROR_OK;
if (((count%2)!=0)||((offset%2)!=0))