cortex_m3_fp_comparator_t -> struct cortex_m3_fp_comparator

Remove misleading typedef and redundant suffix from struct cortex_m3_fp_comparator.
This commit is contained in:
Zachary T Welch
2009-11-13 09:19:37 -08:00
parent d727f97889
commit cdd2d9c2d0
2 changed files with 7 additions and 7 deletions

View File

@@ -119,13 +119,13 @@
#define FPCR_REPLACE_BKPT_HIGH (2 << 30)
#define FPCR_REPLACE_BKPT_BOTH (3 << 30)
typedef struct cortex_m3_fp_comparator_s
struct cortex_m3_fp_comparator
{
int used;
int type;
uint32_t fpcr_value;
uint32_t fpcr_address;
} cortex_m3_fp_comparator_t;
};
typedef struct cortex_m3_dwt_comparator_s
{
@@ -152,7 +152,7 @@ struct cortex_m3_common
int fp_code_available;
int fpb_enabled;
int auto_bp_type;
cortex_m3_fp_comparator_t *fp_comparator_list;
struct cortex_m3_fp_comparator *fp_comparator_list;
/* Data Watchpoint and Trace (DWT) */
int dwt_num_comp;