diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-10-13 12:04:05 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-10-13 12:04:05 +0000 |
commit | f7458c6b19e93d5e3d40ba58f38752f434a7729b (patch) | |
tree | 88a133d0671df96ae0048c5b579a939356290818 /src | |
parent | bc25d4fa5eab27326c607f90f9f5f5393b3e632e (diff) | |
download | openocd_libswd-f7458c6b19e93d5e3d40ba58f38752f434a7729b.tar.gz openocd_libswd-f7458c6b19e93d5e3d40ba58f38752f434a7729b.tar.bz2 openocd_libswd-f7458c6b19e93d5e3d40ba58f38752f434a7729b.tar.xz openocd_libswd-f7458c6b19e93d5e3d40ba58f38752f434a7729b.zip |
fix crash when connecting GDB to powered down target
git-svn-id: svn://svn.berlios.de/openocd/trunk@1043 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src')
-rw-r--r-- | src/target/arm11.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/target/arm11.c b/src/target/arm11.c index f93e716a..751c6425 100644 --- a/src/target/arm11.c +++ b/src/target/arm11.c @@ -1511,7 +1511,8 @@ int arm11_target_create(struct target_s *target, Jim_Interp *interp) int arm11_init_target(struct command_context_s *cmd_ctx, struct target_s *target) { /* Initialize anything we can set up without talking to the target */ - return ERROR_OK; + return arm11_build_reg_cache(target); + } /* talk to the target and set things up */ @@ -1583,8 +1584,6 @@ int arm11_examine(struct target_s *target) arm11->implementor, arm11->didr); - arm11_build_reg_cache(target); - /* as a side-effect this reads DSCR and thus * clears the ARM11_DSCR_STICKY_PRECISE_DATA_ABORT / Sticky Precise Data Abort Flag * as suggested by the spec. |