summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2010-12-29 20:58:30 +0100
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-12-29 20:59:30 +0100
commit8f93c0a3fe29313945a63b3f2154baef70acd796 (patch)
tree81c3f551334e4ae7b8dbb9679c3c339fbbcb31ab
parent7cd2617384f4ac620c468343c1f2009fbfa2fc79 (diff)
downloadopenocd+libswd-8f93c0a3fe29313945a63b3f2154baef70acd796.tar.gz
openocd+libswd-8f93c0a3fe29313945a63b3f2154baef70acd796.tar.bz2
openocd+libswd-8f93c0a3fe29313945a63b3f2154baef70acd796.tar.xz
openocd+libswd-8f93c0a3fe29313945a63b3f2154baef70acd796.zip
target: do not expose error numbers to users
error numbers are only reported at DEBUG log levels and used internally, they are not part of the user interface. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
-rw-r--r--src/target/target.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/target/target.c b/src/target/target.c
index 5cff9d08..ba7aa576 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -4221,9 +4221,6 @@ static int jim_target_examine(Jim_Interp *interp, int argc, Jim_Obj *const *argv
int e = target->type->examine(target);
if (e != ERROR_OK)
{
- Jim_Obj *eObj = Jim_NewIntObj(interp, e);
- Jim_SetResultFormatted(interp, "examine-fails: %#s", eObj);
- Jim_FreeNewObj(interp, eObj);
return JIM_ERR;
}
return JIM_OK;
@@ -4263,9 +4260,6 @@ static int jim_target_poll(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
}
if (e != ERROR_OK)
{
- Jim_Obj *eObj = Jim_NewIntObj(interp, e);
- Jim_SetResultFormatted(interp, "poll-fails: %#s", eObj);
- Jim_FreeNewObj(interp, eObj);
return JIM_ERR;
}
return JIM_OK;