summaryrefslogtreecommitdiff
path: root/src/flash/aduc702x.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 07:38:01 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:06 -0800
commit632fd663a821047df9a9b965ec1c35d6b034ebba (patch)
treed62f8902a4d95189a56825780c903816f31a6a00 /src/flash/aduc702x.c
parentfb59ec739a3ae79937020dc2fe5413be0e73e8d3 (diff)
downloadopenocd+libswd-632fd663a821047df9a9b965ec1c35d6b034ebba.tar.gz
openocd+libswd-632fd663a821047df9a9b965ec1c35d6b034ebba.tar.bz2
openocd+libswd-632fd663a821047df9a9b965ec1c35d6b034ebba.tar.xz
openocd+libswd-632fd663a821047df9a9b965ec1c35d6b034ebba.zip
flash_driver_t -> struct flash_driver
Remove misleading typedef and redundant suffix from struct flash_driver.
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 61ea36a9..c17335e1 100644
--- a/src/flash/aduc702x.c
+++ b/src/flash/aduc702x.c
@@ -422,7 +422,7 @@ static int aduc702x_check_flash_completion(target_t* target, unsigned int timeou
else return ERROR_OK;
}
-flash_driver_t aduc702x_flash = {
+struct flash_driver aduc702x_flash = {
.name = "aduc702x",
.flash_bank_command = &aduc702x_flash_bank_command,
.erase = &aduc702x_erase,