diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-11-17 01:09:50 -0800 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2009-11-17 01:09:50 -0800 |
commit | 0181296f61f11e4390e5a381906021db4ddd4bcd (patch) | |
tree | 603fd56c8c2925ed3869a79309721c177f6eef8c /src/target/arm966e.h | |
parent | 812ab89f58f43979a402ecf4bef7f09f84695cc6 (diff) | |
download | riscv-openocd-0181296f61f11e4390e5a381906021db4ddd4bcd.zip riscv-openocd-0181296f61f11e4390e5a381906021db4ddd4bcd.tar.gz riscv-openocd-0181296f61f11e4390e5a381906021db4ddd4bcd.tar.bz2 |
ARM9TDMI: remove now-needless "struct arm9tdmi"
And move the rest of the vector_catch stuff into the C file;
it's not part of the module interface.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/target/arm966e.h')
-rw-r--r-- | src/target/arm966e.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/arm966e.h b/src/target/arm966e.h index b58f3a2..45aeb4e 100644 --- a/src/target/arm966e.h +++ b/src/target/arm966e.h @@ -29,7 +29,7 @@ struct arm966e_common { - struct arm9tdmi_common arm9tdmi_common; + struct arm7_9_common arm7_9_common; int common_magic; uint32_t cp15_control_reg; }; @@ -38,7 +38,7 @@ static inline struct arm966e_common * target_to_arm966(struct target *target) { return container_of(target->arch_info, struct arm966e_common, - arm9tdmi_common.arm7_9_common.armv4_5_common); + arm7_9_common.armv4_5_common); } int arm966e_init_arch_info(struct target *target, |