diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 08:41:00 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:10 -0800 |
commit | 056fcdb540f0ab9a404f3b5de72fd707eb146603 (patch) | |
tree | 53c7b62a07a3b695be32e98f623ad2a47efa5a6a /src/target/arm920t.c | |
parent | c25e00b52810822108b54ac40dffadba62ef48d9 (diff) | |
download | riscv-openocd-056fcdb540f0ab9a404f3b5de72fd707eb146603.zip riscv-openocd-056fcdb540f0ab9a404f3b5de72fd707eb146603.tar.gz riscv-openocd-056fcdb540f0ab9a404f3b5de72fd707eb146603.tar.bz2 |
arm_jtag_t -> struct arm_jtag
Remove misleading typedef and redundant suffix from struct arm_jtag.
Diffstat (limited to 'src/target/arm920t.c')
-rw-r--r-- | src/target/arm920t.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/arm920t.c b/src/target/arm920t.c index 22f7b63..2fe50a1 100644 --- a/src/target/arm920t.c +++ b/src/target/arm920t.c @@ -55,7 +55,7 @@ static int arm920t_read_cp15_physical(target_t *target, int reg_addr, uint32_t *value) { struct arm920t_common *arm920t = target_to_arm920(target); - arm_jtag_t *jtag_info; + struct arm_jtag *jtag_info; struct scan_field fields[4]; uint8_t access_type_buf = 1; uint8_t reg_addr_buf = reg_addr & 0x3f; @@ -107,7 +107,7 @@ static int arm920t_write_cp15_physical(target_t *target, int reg_addr, uint32_t value) { struct arm920t_common *arm920t = target_to_arm920(target); - arm_jtag_t *jtag_info; + struct arm_jtag *jtag_info; struct scan_field fields[4]; uint8_t access_type_buf = 1; uint8_t reg_addr_buf = reg_addr & 0x3f; @@ -156,7 +156,7 @@ static int arm920t_execute_cp15(target_t *target, uint32_t cp15_opcode, { int retval; struct arm920t_common *arm920t = target_to_arm920(target); - arm_jtag_t *jtag_info; + struct arm_jtag *jtag_info; struct scan_field fields[4]; uint8_t access_type_buf = 0; /* interpreted access */ uint8_t reg_addr_buf = 0x0; |