summaryrefslogtreecommitdiff
path: root/src/flash/avrf.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 07:30:58 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:06 -0800
commit6ca63ee756ea0772a60760da37867ca982b0b049 (patch)
tree000a986e704679369d429b6453440bb5f7285eea /src/flash/avrf.h
parent3877201581c96a02d0e49b74050272ae77753cf1 (diff)
downloadopenocd+libswd-6ca63ee756ea0772a60760da37867ca982b0b049.tar.gz
openocd+libswd-6ca63ee756ea0772a60760da37867ca982b0b049.tar.bz2
openocd+libswd-6ca63ee756ea0772a60760da37867ca982b0b049.tar.xz
openocd+libswd-6ca63ee756ea0772a60760da37867ca982b0b049.zip
avrf_type_t -> struct avrf_type
Remove misleading typedef and redundant suffix from struct avrf_type.
Diffstat (limited to 'src/flash/avrf.h')
-rw-r--r--src/flash/avrf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/avrf.h b/src/flash/avrf.h
index bcd3b72a..abb001c4 100644
--- a/src/flash/avrf.h
+++ b/src/flash/avrf.h
@@ -22,7 +22,7 @@
#include "types.h"
-typedef struct avrf_type_s
+struct avrf_type
{
char name[15];
uint16_t chip_id;
@@ -30,7 +30,7 @@ typedef struct avrf_type_s
int flash_page_num;
int eeprom_page_size;
int eeprom_page_num;
-} avrf_type_t;
+};
typedef struct avrf_flash_bank_s
{