mips32_common_t -> struct mips32_common

Remove misleading typedef and redundant suffix from struct mips32_common.
This commit is contained in:
Zachary T Welch
2009-11-13 08:43:30 -08:00
parent 1bd7a78d92
commit 3b7aee21b5
5 changed files with 38 additions and 38 deletions

View File

@@ -543,7 +543,7 @@ static int pic32mx_probe(struct flash_bank_s *bank)
{
target_t *target = bank->target;
struct pic32mx_flash_bank *pic32mx_info = bank->driver_priv;
mips32_common_t *mips32 = target->arch_info;
struct mips32_common *mips32 = target->arch_info;
mips_ejtag_t *ejtag_info = &mips32->ejtag_info;
int i;
uint16_t num_pages = 0;
@@ -640,7 +640,7 @@ COMMAND_HANDLER(pic32mx_handle_part_id_command)
static int pic32mx_info(struct flash_bank_s *bank, char *buf, int buf_size)
{
target_t *target = bank->target;
mips32_common_t *mips32 = target->arch_info;
struct mips32_common *mips32 = target->arch_info;
mips_ejtag_t *ejtag_info = &mips32->ejtag_info;
uint32_t device_id;
int printed = 0, i;