Index: uspace/srv/net/tl/tcp/tcp_module.c
===================================================================
--- uspace/srv/net/tl/tcp/tcp_module.c	(revision 614d06567e34555e0ab2bb578905bfbafdbbbd63)
+++ uspace/srv/net/tl/tcp/tcp_module.c	(revision 0485135c4340bfe39246c5097af24c53043005de)
@@ -28,13 +28,17 @@
 
 /** @addtogroup tcp
- *  @{
+ * @{
  */
 
 /** @file
- *  TCP standalone module implementation.
- *  Contains skeleton module functions mapping.
- *  The functions are used by the module skeleton as module specific entry points.
- *  @see module.c
+ * TCP standalone module implementation.
+ * Contains skeleton module functions mapping.
+ * The functions are used by the module skeleton as module specific entry
+ * points.
+ * @see module.c
  */
+
+#include "tcp.h"
+#include "tcp_module.h"
 
 #include <async.h>
@@ -46,24 +50,13 @@
 #include <net/ip_protocols.h>
 #include <net/modules.h>
-
 #include <net/packet.h>
 #include <net_interface.h>
+
 #include <ip_interface.h>
 #include <tl_local.h>
 
-#include "tcp.h"
-#include "tcp_module.h"
+/** TCP module global data. */
+extern tcp_globals_t tcp_globals;
 
-/** TCP module global data.
- */
-extern tcp_globals_t	tcp_globals;
-
-/** Starts the TCP module.
- *  Initializes the client connection serving function, initializes the module, registers the module service and starts the async manager, processing IPC messages in an infinite loop.
- *  @param[in] client_connection The client connection processing function. The module skeleton propagates its own one.
- *  @returns EOK on successful module termination.
- *  @returns Other error codes as defined for the tcp_initialize() function.
- *  @returns Other error codes as defined for the REGISTER_ME() macro function.
- */
 int tl_module_start_standalone(async_client_conn_t client_connection)
 {
@@ -75,6 +68,6 @@
 	
 	ipcarg_t phonehash;
-	if (ERROR_OCCURRED(tcp_initialize(client_connection))
-	    || ERROR_OCCURRED(REGISTER_ME(SERVICE_TCP, &phonehash))) {
+	if (ERROR_OCCURRED(tcp_initialize(client_connection)) ||
+	    ERROR_OCCURRED(REGISTER_ME(SERVICE_TCP, &phonehash))) {
 		pm_destroy();
 		return ERROR_CODE;
@@ -87,13 +80,8 @@
 }
 
-/** Processes the TCP message.
- *  @param[in] callid The message identifier.
- *  @param[in] call The message parameters.
- *  @param[out] answer The message answer parameters.
- *  @param[out] answer_count The last parameter for the actual answer in the answer parameter.
- *  @returns EOK on success.
- *  @returns Other error codes as defined for the tcp_message() function.
- */
-int tl_module_message_standalone(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
+int
+tl_module_message_standalone(ipc_callid_t callid, ipc_call_t *call,
+    ipc_call_t *answer, int *answer_count)
+{
 	return tcp_message_standalone(callid, call, answer, answer_count);
 }
