avr_common_t -> struct avr_common

Remove misleading typedef and redundant suffix from struct avr_common.
This commit is contained in:
Zachary T Welch
2009-11-13 08:41:52 -08:00
parent 4bc80e5a65
commit e7f65c5a11
3 changed files with 13 additions and 13 deletions

View File

@@ -104,7 +104,7 @@ int avr_register_commands(struct command_context_s *cmd_ctx)
int avr_target_create(struct target_s *target, Jim_Interp *interp)
{
avr_common_t *avr = calloc(1, sizeof(avr_common_t));
struct avr_common *avr = calloc(1, sizeof(struct avr_common));
avr->jtag_info.tap = target->tap;
target->arch_info = avr;