diff --git a/src/server/gdb_server.c b/src/server/gdb_server.c
index 562eb13a4076a016d91d8eccf00db020d2dd1e55..6dcd493b42ebdeb58b9fa952849854b31b85e760 100644
--- a/src/server/gdb_server.c
+++ b/src/server/gdb_server.c
@@ -37,6 +37,7 @@
 #include "jtag.h"
 #include "breakpoints.h"
 #include "flash.h"
+#include "target.h"
 #include "target_request.h"
 #include "configuration.h"
 
@@ -305,7 +306,7 @@ int gdb_put_packet_inner(connection_t *connection, char *buffer, int len)
 			break;
 		if ((retval = gdb_get_char(connection, &reply)) != ERROR_OK)
 			return retval;
-        if( reply == '$' ){
+		if( reply == '$' ){
 			// fix a problem with some IAR tools
 			gdb_putback_char( connection, reply );
 			LOG_DEBUG("Unexpected start of new packet");
@@ -787,7 +788,7 @@ int gdb_new_connection(connection_t *connection)
 	return ERROR_OK;
 }
 
-void gdb_connection_closed(connection_t *connection)
+int gdb_connection_closed(connection_t *connection)
 {
 	gdb_service_t *gdb_service = connection->service->priv;
 	gdb_connection_t *gdb_connection = connection->priv;
@@ -817,6 +818,8 @@ void gdb_connection_closed(connection_t *connection)
 	log_remove_callback(gdb_log_callback, connection);
 
 	target_call_event_callbacks(gdb_service->target, TARGET_EVENT_GDB_DETACH );
+
+	return ERROR_OK;
 }
 
 void gdb_send_error(connection_t *connection, u8 the_error)
diff --git a/src/target/arm9tdmi.c b/src/target/arm9tdmi.c
index 5691bb76c9387f518d5e61ced758359ec37ef138..69e9b79767ee6446f4abd4fd2732d2abb4a14966 100644
--- a/src/target/arm9tdmi.c
+++ b/src/target/arm9tdmi.c
@@ -470,7 +470,7 @@ void arm9tdmi_change_to_arm(target_t *target, u32 *r0, u32 *pc)
 	
 	if((retval = jtag_execute_queue()) != ERROR_OK)
 	{
-		return retval;
+		return;
 	}
 	
 	/* fix program counter:
diff --git a/src/target/armv7m.c b/src/target/armv7m.c
index 6dc224f90048b10262a90ea46a1ef6c6cedf4f17..ec9aad0c8618ee2086147e34fd65e05bc6b27d06 100644
--- a/src/target/armv7m.c
+++ b/src/target/armv7m.c
@@ -632,12 +632,12 @@ int armv7m_blank_check_memory(struct target_s *target, u32 address, u32 count, u
 	u16 erase_check_code[] =
 	{
 							/* loop: */
-		 0xF810, 0x3B01,	/* ldrb 	r3, [r0], #1 */
-		 0xEA02, 0x0203,	/* and 	r2, r2, r3 */
-		 0x3901,			/* subs 	r1, r1, #1 */
-		 0xD1F9,			/* bne		loop */
-		 					/* end: */
-		 0xE7FE,			/* b		end */
+		0xF810, 0x3B01,		/* ldrb 	r3, [r0], #1 */
+		0xEA02, 0x0203,		/* and 	r2, r2, r3 */
+		0x3901,				/* subs 	r1, r1, #1 */
+		0xD1F9,				/* bne		loop */
+							/* end: */
+		0xE7FE,				/* b		end */
 	};
 
 	/* make sure we have a working area */
diff --git a/src/target/mips_m4k.c b/src/target/mips_m4k.c
index 04c9a1eff0ca83d64dbc1321a6e6b33e9e24ddea..0e544df7e00fbeac39cb5a4228b995a9340174ac 100644
--- a/src/target/mips_m4k.c
+++ b/src/target/mips_m4k.c
@@ -236,7 +236,7 @@ int mips_m4k_assert_reset(target_t *target)
 	mips_ejtag_t *ejtag_info = &mips32->ejtag_info;
 	
 	LOG_DEBUG("target->state: %s", 
-		  Jim_Nvp_value2name_simple( nvp_target_state, target->state )->name);
+		Jim_Nvp_value2name_simple( nvp_target_state, target->state )->name);
 	
 	if (!(jtag_reset_config & RESET_HAS_SRST))
 	{
@@ -278,12 +278,12 @@ int mips_m4k_assert_reset(target_t *target)
 
 	mips32_invalidate_core_regs(target);
 
-    if (target->reset_halt)
-    {
-    	int retval;
+	if (target->reset_halt)
+	{
+		int retval;
 		if ((retval = target_halt(target))!=ERROR_OK)
 			return retval;
-    }
+	}
 	
 	
 	return ERROR_OK;
@@ -292,7 +292,7 @@ int mips_m4k_assert_reset(target_t *target)
 int mips_m4k_deassert_reset(target_t *target)
 {
 	LOG_DEBUG("target->state: %s", 
-		  Jim_Nvp_value2name_simple( nvp_target_state, target->state )->name);
+		Jim_Nvp_value2name_simple( nvp_target_state, target->state )->name);
 	
 	/* deassert reset lines */
 	jtag_add_reset(0, 0);
@@ -327,7 +327,7 @@ int mips_m4k_resume(struct target_s *target, int current, u32 address, int handl
 	}
 	
 	/* current = 1: continue on current pc, otherwise continue at <address> */
-	if (!current) 
+	if (!current)
 	{
 		buf_set_u32(mips32->core_cache->reg_list[MIPS32_PC].value, 0, 32, address);
 		mips32->core_cache->reg_list[MIPS32_PC].dirty = 1;
@@ -613,7 +613,7 @@ int mips_m4k_init_arch_info(target_t *target, mips_m4k_common_t *mips_m4k, int c
 	/* initialize mips4k specific info */
 	mips32_init_arch_info(target, mips32, chain_pos, variant);
 	mips32->arch_info = mips_m4k;
-		
+	
 	return ERROR_OK;
 }
 
diff --git a/src/target/target.h b/src/target/target.h
index e425a22eec27127770539ead7f0f0726e6457959..baae2562d9c161345de8f0773539ab0b1b4e4259 100644
--- a/src/target/target.h
+++ b/src/target/target.h
@@ -350,6 +350,7 @@ extern int target_register_user_commands(struct command_context_s *cmd_ctx);
 extern int target_init(struct command_context_s *cmd_ctx);
 extern int target_examine(void);
 extern int handle_target(void *priv);
+extern int target_process_reset(struct command_context_s *cmd_ctx, enum target_reset_mode reset_mode);
 
 extern int target_register_event_callback(int (*callback)(struct target_s *target, enum target_event event, void *priv), void *priv);
 extern int target_unregister_event_callback(int (*callback)(struct target_s *target, enum target_event event, void *priv), void *priv);
diff --git a/src/target/target/test_reset_syntax_error.cfg b/src/target/target/test_reset_syntax_error.cfg
index d2ae9109510e95a587844e084ffe37db88b4e381..1f6b0e92db2ca029606904b814673dbc6b554a4b 100644
--- a/src/target/target/test_reset_syntax_error.cfg
+++ b/src/target/target/test_reset_syntax_error.cfg
@@ -1,15 +1,15 @@
-# Test script to check that syntax error in reset
-# script is reported properly.
-
-# at91eb40a target
-
-#jtag scan chain
-jtag_device 4 0x1 0xf 0xe
-
-#target configuration
-target arm7tdmi little 0 arm7tdmi-s_r4
-
-[new_target_name] configure -event reset-init { 
-
-	syntax error
-}
+# Test script to check that syntax error in reset
+# script is reported properly.
+
+# at91eb40a target
+
+#jtag scan chain
+jtag_device 4 0x1 0xf 0xe
+
+#target configuration
+target arm7tdmi little 0 arm7tdmi-s_r4
+
+[new_target_name] configure -event reset-init { 
+
+	syntax error
+}
diff --git a/src/target/target/test_syntax_error.cfg b/src/target/target/test_syntax_error.cfg
index 9a87912cbc18a882c70ddd688236b1cff4b56beb..63713d1cff0e789c506a5a43ff69c14ee6e37146 100644
--- a/src/target/target/test_syntax_error.cfg
+++ b/src/target/target/test_syntax_error.cfg
@@ -1,4 +1,4 @@
-# This script tests a syntax error in the startup 
-# config script
-
+# This script tests a syntax error in the startup 
+# config script
+
 syntax error here
\ No newline at end of file