summaryrefslogtreecommitdiff
path: root/src/target/target.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-05-31 11:32:10 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-05-31 11:32:10 +0000
commit4deb42ed004f90058856b1d72dda63c4843b3854 (patch)
treea0fd422d243e6e109f16314f44db13edc31d6d6d /src/target/target.c
parentd00ac17e8e06fa06acde570d89ac6a90126359c8 (diff)
downloadopenocd+libswd-4deb42ed004f90058856b1d72dda63c4843b3854.tar.gz
openocd+libswd-4deb42ed004f90058856b1d72dda63c4843b3854.tar.bz2
openocd+libswd-4deb42ed004f90058856b1d72dda63c4843b3854.tar.xz
openocd+libswd-4deb42ed004f90058856b1d72dda63c4843b3854.zip
Add target_examine_one wrapper:
- replaces all calls to target->type->examine. git-svn-id: svn://svn.berlios.de/openocd/trunk@1968 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/target.c')
-rw-r--r--src/target/target.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/target/target.c b/src/target/target.c
index 16d28727..04d162b5 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -467,6 +467,11 @@ static int default_examine(struct target_s *target)
return ERROR_OK;
}
+int target_examine_one(struct target_s *target)
+{
+ return target->type->examine(target);
+}
+
/* Targets that correctly implement init+examine, i.e.
* no communication with target during init:
*
@@ -478,7 +483,7 @@ int target_examine(void)
target_t *target = all_targets;
while (target)
{
- if ((retval = target->type->examine(target))!=ERROR_OK)
+ if ((retval = target_examine_one(target)) != ERROR_OK)
return retval;
target = target->next;
}