arm920t_tlb_entry_t -> struct arm920t_tlb_entry

Remove misleading typedef and redundant suffix from struct arm920t_tlb_entry.
This commit is contained in:
Zachary T Welch 2009-11-13 08:40:12 -08:00
parent b174a0d75e
commit 16487e7085
2 changed files with 3 additions and 3 deletions

View File

@ -922,7 +922,7 @@ COMMAND_HANDLER(arm920t_handle_read_mmu_command)
int i;
FILE *output;
uint32_t Dlockdown, Ilockdown;
arm920t_tlb_entry_t d_tlb[64], i_tlb[64];
struct arm920t_tlb_entry d_tlb[64], i_tlb[64];
int victim;
retval = arm920t_verify_pointer(cmd_ctx, arm920t);

View File

@ -51,12 +51,12 @@ struct arm920t_cache_line
uint32_t data[8];
};
typedef struct arm920t_tlb_entry_s
struct arm920t_tlb_entry
{
uint32_t cam;
uint32_t ram1;
uint32_t ram2;
} arm920t_tlb_entry_t;
};
int arm920t_arch_state(struct target_s *target);
int arm920t_soft_reset_halt(struct target_s *target);