diff options
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 9fe8fc4f..ca7728b0 100644 --- a/src/target/arm920t.c +++ b/src/target/arm920t.c @@ -56,7 +56,7 @@ static int arm920t_read_cp15_physical(target_t *target, { struct arm920t_common_s *arm920t = target_to_arm920(target); arm_jtag_t *jtag_info; - scan_field_t fields[4]; + struct scan_field fields[4]; uint8_t access_type_buf = 1; uint8_t reg_addr_buf = reg_addr & 0x3f; uint8_t nr_w_buf = 0; @@ -108,7 +108,7 @@ static int arm920t_write_cp15_physical(target_t *target, { struct arm920t_common_s *arm920t = target_to_arm920(target); arm_jtag_t *jtag_info; - scan_field_t fields[4]; + struct scan_field fields[4]; uint8_t access_type_buf = 1; uint8_t reg_addr_buf = reg_addr & 0x3f; uint8_t nr_w_buf = 1; @@ -157,7 +157,7 @@ static int arm920t_execute_cp15(target_t *target, uint32_t cp15_opcode, int retval; struct arm920t_common_s *arm920t = target_to_arm920(target); arm_jtag_t *jtag_info; - scan_field_t fields[4]; + struct scan_field fields[4]; uint8_t access_type_buf = 0; /* interpreted access */ uint8_t reg_addr_buf = 0x0; uint8_t nr_w_buf = 0; |