mips32_core_reg_t -> struct mips32_core_reg

Remove misleading typedef and redundant suffix from struct mips32_core_reg.
This commit is contained in:
Zachary T Welch
2009-11-13 08:43:33 -08:00
parent 3b7aee21b5
commit ccde06a08f
2 changed files with 8 additions and 8 deletions

View File

@@ -66,12 +66,12 @@ struct mips32_common
int (*write_core_reg)(struct target_s *target, int num);
};
typedef struct mips32_core_reg_s
struct mips32_core_reg
{
uint32_t num;
struct target_s *target;
struct mips32_common *mips32_common;
} mips32_core_reg_t;
};
#define MIPS32_OP_BEQ 0x04
#define MIPS32_OP_BNE 0x05