diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 08:40:09 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:09 -0800 |
commit | b174a0d75ec81fbcd075c8c8d7f915e4a3d76bc3 (patch) | |
tree | 116fbfd7b910fdcb01e60934c3f72fcce7d22788 /src/target/arm920t.c | |
parent | 8e77975b92a75d392727339eccd6cc7898628ebb (diff) | |
download | riscv-openocd-b174a0d75ec81fbcd075c8c8d7f915e4a3d76bc3.zip riscv-openocd-b174a0d75ec81fbcd075c8c8d7f915e4a3d76bc3.tar.gz riscv-openocd-b174a0d75ec81fbcd075c8c8d7f915e4a3d76bc3.tar.bz2 |
arm920t_cache_line_t -> struct arm920t_cache_line
Remove misleading typedef and redundant suffix from struct arm920t_cache_line.
Diffstat (limited to 'src/target/arm920t.c')
-rw-r--r-- | src/target/arm920t.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/arm920t.c b/src/target/arm920t.c index 336b01c..871d2f7 100644 --- a/src/target/arm920t.c +++ b/src/target/arm920t.c @@ -676,7 +676,7 @@ COMMAND_HANDLER(arm920t_handle_read_cache_command) uint32_t C15_C_D_Ind, C15_C_I_Ind; int i; FILE *output; - arm920t_cache_line_t d_cache[8][64], i_cache[8][64]; + struct arm920t_cache_line d_cache[8][64], i_cache[8][64]; int segment, index; retval = arm920t_verify_pointer(cmd_ctx, arm920t); |