summaryrefslogtreecommitdiff
path: root/src/target/target.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/target.c')
-rw-r--r--src/target/target.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/target/target.c b/src/target/target.c
index feddc1c0..377bb0dc 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -1577,24 +1577,11 @@ int handle_halt_command(struct command_context_s *cmd_ctx, char *cmd, char **arg
target_t *target = get_current_target(cmd_ctx);
DEBUG("-");
-
- command_print(cmd_ctx, "requesting target halt...");
if ((retval = target->type->halt(target)) != ERROR_OK)
- {
- switch (retval)
{
- case ERROR_TARGET_ALREADY_HALTED:
- command_print(cmd_ctx, "target already halted");
- break;
- case ERROR_TARGET_TIMEOUT:
- command_print(cmd_ctx, "target timed out... shutting down");
- return retval;
- default:
- command_print(cmd_ctx, "unknown error... shutting down");
return retval;
}
- }
return handle_wait_halt_command(cmd_ctx, cmd, args, argc);
}