etb_reg_t -> struct etb_reg

Remove misleading typedef and redundant suffix from struct etb_reg.
This commit is contained in:
Zachary T Welch
2009-11-13 08:42:24 -08:00
parent 2f7fc2921d
commit 01f9dc18fc
2 changed files with 6 additions and 6 deletions

View File

@@ -46,11 +46,11 @@ typedef struct etb_s
uint32_t ram_width;
} etb_t;
typedef struct etb_reg_s
struct etb_reg
{
uint32_t addr;
etb_t *etb;
} etb_reg_t;
};
extern etm_capture_driver_t etb_capture_driver;