diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-10 21:02:30 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-10 21:02:30 -0800 |
commit | 583a293a326bcb4b7438871d492cd85c143e3fa1 (patch) | |
tree | b40178ff16e7dd135f48639199757046dcdef472 | |
parent | d570e4f6f6ae13eccc3f701f4e0fe5beb51fb295 (diff) | |
download | openocd_libswd-583a293a326bcb4b7438871d492cd85c143e3fa1.tar.gz openocd_libswd-583a293a326bcb4b7438871d492cd85c143e3fa1.tar.bz2 openocd_libswd-583a293a326bcb4b7438871d492cd85c143e3fa1.tar.xz openocd_libswd-583a293a326bcb4b7438871d492cd85c143e3fa1.zip |
fix bug in ARM720: bugfix
-rw-r--r-- | src/target/arm720t.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/arm720t.c b/src/target/arm720t.c index c84ee287..6ce79807 100644 --- a/src/target/arm720t.c +++ b/src/target/arm720t.c @@ -405,7 +405,7 @@ static int arm720t_target_create(struct target_s *target, Jim_Interp *interp) { struct arm720t_common_s *arm720t = calloc(1, sizeof(*arm720t)); - arm720t->arm7tdmi_common->arm7_9_common.armv4_5_common.is_armv4 = true; + arm720t->arm7tdmi_common.arm7_9_common.armv4_5_common.is_armv4 = true; return arm720t_init_arch_info(target, arm720t, target->tap); } |