summaryrefslogtreecommitdiff
path: root/src/target/armv4_5.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 09:06:49 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:12 -0800
commit55edfdf2ab6c5d1d6cd4c1c97a79cbb1d39b1f22 (patch)
tree433f8e72791e1b4537eb710f52f7ca07ae6c6b24 /src/target/armv4_5.c
parent22f6a4cef5b4bf6696a7ea0fa41fafc3da06c9fa (diff)
downloadopenocd+libswd-55edfdf2ab6c5d1d6cd4c1c97a79cbb1d39b1f22.tar.gz
openocd+libswd-55edfdf2ab6c5d1d6cd4c1c97a79cbb1d39b1f22.tar.bz2
openocd+libswd-55edfdf2ab6c5d1d6cd4c1c97a79cbb1d39b1f22.tar.xz
openocd+libswd-55edfdf2ab6c5d1d6cd4c1c97a79cbb1d39b1f22.zip
arm_instruction_t -> struct arm_instruction
Remove misleading typedef and redundant suffix from struct arm_instruction.
Diffstat (limited to 'src/target/armv4_5.c')
-rw-r--r--src/target/armv4_5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/armv4_5.c b/src/target/armv4_5.c
index e7c405c9..fb6c93b8 100644
--- a/src/target/armv4_5.c
+++ b/src/target/armv4_5.c
@@ -395,7 +395,7 @@ COMMAND_HANDLER(handle_armv4_5_disassemble_command)
uint32_t address;
int count = 1;
int i;
- arm_instruction_t cur_instruction;
+ struct arm_instruction cur_instruction;
uint32_t opcode;
uint16_t thumb_opcode;
int thumb = 0;