Browse Source

etb_reg_t -> struct etb_reg

Remove misleading typedef and redundant suffix from struct etb_reg.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
01f9dc18fc
2 changed files with 6 additions and 6 deletions
  1. +4
    -4
      src/target/etb.c
  2. +2
    -2
      src/target/etb.h

+ 4
- 4
src/target/etb.c View File

@@ -125,7 +125,7 @@ reg_cache_t* etb_build_reg_cache(etb_t *etb)
{
reg_cache_t *reg_cache = malloc(sizeof(reg_cache_t));
reg_t *reg_list = NULL;
etb_reg_t *arch_info = NULL;
struct etb_reg *arch_info = NULL;
int num_regs = 9;
int i;

@@ -135,7 +135,7 @@ reg_cache_t* etb_build_reg_cache(etb_t *etb)

/* the actual registers are kept in two arrays */
reg_list = calloc(num_regs, sizeof(reg_t));
arch_info = calloc(num_regs, sizeof(etb_reg_t));
arch_info = calloc(num_regs, sizeof(struct etb_reg));

/* fill in values for the reg cache */
reg_cache->name = "etb registers";
@@ -227,7 +227,7 @@ static int etb_read_ram(etb_t *etb, uint32_t *data, int num_frames)
static int etb_read_reg_w_check(reg_t *reg,
uint8_t* check_value, uint8_t* check_mask)
{
etb_reg_t *etb_reg = reg->arch_info;
struct etb_reg *etb_reg = reg->arch_info;
uint8_t reg_addr = etb_reg->addr & 0x7f;
struct scan_field fields[3];

@@ -313,7 +313,7 @@ static int etb_set_reg_w_exec(reg_t *reg, uint8_t *buf)

static int etb_write_reg(reg_t *reg, uint32_t value)
{
etb_reg_t *etb_reg = reg->arch_info;
struct etb_reg *etb_reg = reg->arch_info;
uint8_t reg_addr = etb_reg->addr & 0x7f;
struct scan_field fields[3];



+ 2
- 2
src/target/etb.h 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;



Loading…
Cancel
Save