diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 07:30:58 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:06 -0800 |
commit | 6ca63ee756ea0772a60760da37867ca982b0b049 (patch) | |
tree | 000a986e704679369d429b6453440bb5f7285eea | |
parent | 3877201581c96a02d0e49b74050272ae77753cf1 (diff) | |
download | riscv-openocd-6ca63ee756ea0772a60760da37867ca982b0b049.zip riscv-openocd-6ca63ee756ea0772a60760da37867ca982b0b049.tar.gz riscv-openocd-6ca63ee756ea0772a60760da37867ca982b0b049.tar.bz2 |
avrf_type_t -> struct avrf_type
Remove misleading typedef and redundant suffix from struct avrf_type.
-rw-r--r-- | src/flash/avrf.c | 6 | ||||
-rw-r--r-- | src/flash/avrf.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/flash/avrf.c b/src/flash/avrf.c index 8bbb616..07b54c5 100644 --- a/src/flash/avrf.c +++ b/src/flash/avrf.c @@ -50,7 +50,7 @@ #define AVR_JTAG_REG_ProgrammingCommand_Len 15 #define AVR_JTAG_REG_FlashDataByte_Len 16 -avrf_type_t avft_chips_info[] = +struct avrf_type avft_chips_info[] = { // name, chip_id, flash_page_size, flash_page_num, eeprom_page_size, eeprom_page_num {"atmega128", 0x9702, 256, 512, 8, 512}, @@ -266,7 +266,7 @@ static int avrf_probe(struct flash_bank_s *bank) target_t *target = bank->target; avrf_flash_bank_t *avrf_info = bank->driver_priv; avr_common_t *avr = target->arch_info; - avrf_type_t *avr_info = NULL; + struct avrf_type *avr_info = NULL; int i; uint32_t device_id; @@ -347,7 +347,7 @@ static int avrf_info(struct flash_bank_s *bank, char *buf, int buf_size) { target_t *target = bank->target; avr_common_t *avr = target->arch_info; - avrf_type_t *avr_info = NULL; + struct avrf_type *avr_info = NULL; int i; uint32_t device_id; diff --git a/src/flash/avrf.h b/src/flash/avrf.h index bcd3b72..abb001c 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 { |