summaryrefslogtreecommitdiff
path: root/src/openocd.c
diff options
context:
space:
mode:
authorntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-09-24 22:15:22 +0000
committerntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-09-24 22:15:22 +0000
commitbdb5fd8c98ad474bf2ad790eefc62a830b33f0d4 (patch)
tree2ea1fbaf7c31ddf7801236c13cf2d996b3a4333d /src/openocd.c
parentf9a3c36cf26b209e04f0f67e0d2b6a844b6b5873 (diff)
downloadopenocd+libswd-bdb5fd8c98ad474bf2ad790eefc62a830b33f0d4.tar.gz
openocd+libswd-bdb5fd8c98ad474bf2ad790eefc62a830b33f0d4.tar.bz2
openocd+libswd-bdb5fd8c98ad474bf2ad790eefc62a830b33f0d4.tar.xz
openocd+libswd-bdb5fd8c98ad474bf2ad790eefc62a830b33f0d4.zip
- renamed x7926 driver to aduc702x to match other flash drivers
- removed c99 types (mingw issues) from aduc driver and cleanup - updated docs for aduc702x flash driver git-svn-id: svn://svn.berlios.de/openocd/trunk@995 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/openocd.c')
-rw-r--r--src/openocd.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/openocd.c b/src/openocd.c
index d0bd9de1..ccace082 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -60,7 +60,6 @@
#include "replacements.h"
-
/* Give TELNET a way to find out what version this is */
int handle_version_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
{
@@ -69,7 +68,6 @@ int handle_version_command(struct command_context_s *cmd_ctx, char *cmd, char **
return ERROR_OK;
}
-
void exit_handler(void)
{
/* close JTAG interface */
@@ -91,8 +89,6 @@ static int log_target_callback_event_handler(struct target_s *target, enum targe
return ERROR_OK;
}
-
-
/* OpenOCD can't really handle failure of this command. Patches welcome! :-) */
int handle_init_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
{
@@ -148,8 +144,6 @@ int handle_init_command(struct command_context_s *cmd_ctx, char *cmd, char **arg
tcl_init(); /* allows tcl to just connect without going thru telnet */
target_register_event_callback(log_target_callback_event_handler, cmd_ctx);
-
-
return ERROR_OK;
}