Index: uspace/srv/net/il/ip/ip_module.c
===================================================================
--- uspace/srv/net/il/ip/ip_module.c	(revision a8ca1d817fa93ba15a19d092c625d4ed7045f759)
+++ uspace/srv/net/il/ip/ip_module.c	(revision 4f35b9ff312815d8d10bd15cf522c3dc2d914ff2)
@@ -32,8 +32,10 @@
 
 /** @file
- *  IP standalone module implementation.
- *  Contains skeleton module functions mapping.
- *  The functions are used by the module skeleton as module specific entry points.
- *  @see module.c
+ * IP standalone module implementation.
+ * Contains skeleton module functions mapping.
+ * The functions are used by the module skeleton as module specific entry
+ * points.
+ *
+ * @see module.c
  */
 
@@ -52,13 +54,16 @@
 #include "ip_module.h"
 
-/** IP module global data.
- */
+/** IP module global data. */
 extern ip_globals_t ip_globals;
 
-int il_module_message_standalone(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
+int
+il_module_message_standalone(ipc_callid_t callid, ipc_call_t *call,
+    ipc_call_t *answer, int *answer_count)
+{
 	return ip_message_standalone(callid, call, answer, answer_count);
 }
 
-int il_module_start_standalone(async_client_conn_t client_connection){
+int il_module_start_standalone(async_client_conn_t client_connection)
+{
 	ERROR_DECLARE;
 	
@@ -68,6 +73,6 @@
 	
 	ipcarg_t phonehash;
-	if (ERROR_OCCURRED(ip_initialize(client_connection))
-	    || ERROR_OCCURRED(REGISTER_ME(SERVICE_IP, &phonehash))) {
+	if (ERROR_OCCURRED(ip_initialize(client_connection)) ||
+	    ERROR_OCCURRED(REGISTER_ME(SERVICE_IP, &phonehash))) {
 		pm_destroy();
 		return ERROR_CODE;
