summaryrefslogtreecommitdiff
path: root/src/target/arm920t.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:40:09 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:09 -0800
commitb174a0d75ec81fbcd075c8c8d7f915e4a3d76bc3 (patch)
tree116fbfd7b910fdcb01e60934c3f72fcce7d22788 /src/target/arm920t.h
parent8e77975b92a75d392727339eccd6cc7898628ebb (diff)
downloadopenocd+libswd-b174a0d75ec81fbcd075c8c8d7f915e4a3d76bc3.tar.gz
openocd+libswd-b174a0d75ec81fbcd075c8c8d7f915e4a3d76bc3.tar.bz2
openocd+libswd-b174a0d75ec81fbcd075c8c8d7f915e4a3d76bc3.tar.xz
openocd+libswd-b174a0d75ec81fbcd075c8c8d7f915e4a3d76bc3.zip
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.h')
-rw-r--r--src/target/arm920t.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/arm920t.h b/src/target/arm920t.h
index 38dafcf1..9a837b52 100644
--- a/src/target/arm920t.h
+++ b/src/target/arm920t.h
@@ -45,11 +45,11 @@ target_to_arm920(struct target_s *target)
arm9tdmi_common.arm7_9_common.armv4_5_common);
}
-typedef struct arm920t_cache_line_s
+struct arm920t_cache_line
{
uint32_t cam;
uint32_t data[8];
-} arm920t_cache_line_t;
+};
typedef struct arm920t_tlb_entry_s
{