Index: uspace/lib/net/il/arp_remote.c
===================================================================
--- uspace/lib/net/il/arp_remote.c	(revision faa35887198ac588c1c1739e0a771b16b8a24b8c)
+++ uspace/lib/net/il/arp_remote.c	(revision af7638e9253564e42501bc73eceaab48f672a909)
@@ -146,13 +146,4 @@
 }
 
-/** Returns the ARP task identifier.
- *
- * @returns		0 if called by the remote module.
- */
-task_id_t arp_task_get_id(void)
-{
-	return 0;
-}
-
 /** Translates the given protocol address to the network interface address.
  *
Index: uspace/lib/net/include/arp_interface.h
===================================================================
--- uspace/lib/net/include/arp_interface.h	(revision faa35887198ac588c1c1739e0a771b16b8a24b8c)
+++ uspace/lib/net/include/arp_interface.h	(revision af7638e9253564e42501bc73eceaab48f672a909)
@@ -56,5 +56,4 @@
 extern int arp_clean_cache_req(int);
 extern int arp_connect_module(services_t);
-extern task_id_t arp_task_get_id(void);
 
 /*@}*/
Index: uspace/srv/net/il/arp/arp.c
===================================================================
--- uspace/srv/net/il/arp/arp.c	(revision faa35887198ac588c1c1739e0a771b16b8a24b8c)
+++ uspace/srv/net/il/arp/arp.c	(revision af7638e9253564e42501bc73eceaab48f672a909)
@@ -534,8 +534,4 @@
 	}
 	return EOK;
-}
-
-task_id_t arp_task_get_id(void){
-	return task_get_id();
 }
 
Index: uspace/srv/net/il/ip/ip.c
===================================================================
--- uspace/srv/net/il/ip/ip.c	(revision faa35887198ac588c1c1739e0a771b16b8a24b8c)
+++ uspace/srv/net/il/ip/ip.c	(revision af7638e9253564e42501bc73eceaab48f672a909)
@@ -423,5 +423,5 @@
 	ip_globals.client_connection = client_connection;
 	ERROR_PROPAGATE(modules_initialize(&ip_globals.modules));
-	ERROR_PROPAGATE(add_module(NULL, &ip_globals.modules, ARP_NAME, ARP_FILENAME, SERVICE_ARP, arp_task_get_id(), arp_connect_module));
+	ERROR_PROPAGATE(add_module(NULL, &ip_globals.modules, ARP_NAME, ARP_FILENAME, SERVICE_ARP, 0, arp_connect_module));
 	fibril_rwlock_write_unlock(&ip_globals.lock);
 	return EOK;
