summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-04-11 15:49:31 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-04-11 15:49:31 +0000
commitd300ecfc8ef59ba05f9787847e6daba31f4d6dac (patch)
treeb43fe416db340f644f96e5e388e81c673f26b389 /src
parentc688c1cf48f6cdd0b104d8cff0a1708aa16466a3 (diff)
downloadopenocd+libswd-d300ecfc8ef59ba05f9787847e6daba31f4d6dac.tar.gz
openocd+libswd-d300ecfc8ef59ba05f9787847e6daba31f4d6dac.tar.bz2
openocd+libswd-d300ecfc8ef59ba05f9787847e6daba31f4d6dac.tar.xz
openocd+libswd-d300ecfc8ef59ba05f9787847e6daba31f4d6dac.zip
fixed gaffe for default examine implementation
git-svn-id: svn://svn.berlios.de/openocd/trunk@567 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src')
-rw-r--r--src/target/target.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/target/target.c b/src/target/target.c
index ee387dbd..2ec26e0b 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -466,6 +466,7 @@ static int default_mmu(struct target_s *target, int *enabled)
static int default_examine(struct command_context_s *cmd_ctx, struct target_s *target)
{
+ target->type->examined = 1;
return ERROR_OK;
}