Index: uspace/lib/nic/include/nic.h
===================================================================
--- uspace/lib/nic/include/nic.h	(revision e86b8f0a4a36b968e6ed12053ec2fbf42b8b5f9e)
+++ uspace/lib/nic/include/nic.h	(revision 77a69ea2b4d9de163884f75870b8a88e2f717139)
@@ -219,7 +219,4 @@
 extern void nic_set_poll_handlers(nic_t *,
 	poll_mode_change_handler, poll_request_handler);
-
-/* Functions called in device_added */
-extern int nic_ready(nic_t *);
 
 /* General driver functions */
Index: uspace/lib/nic/src/nic_driver.c
===================================================================
--- uspace/lib/nic/src/nic_driver.c	(revision e86b8f0a4a36b968e6ed12053ec2fbf42b8b5f9e)
+++ uspace/lib/nic/src/nic_driver.c	(revision 77a69ea2b4d9de163884f75870b8a88e2f717139)
@@ -89,9 +89,4 @@
     nic_iface_t *iface)
 {
-	if (driver_ops) {
-		if (!driver_ops->device_added)
-			driver_ops->device_added = nic_device_added_impl;
-	}
-
 	if (dev_ops) {
 		if (!dev_ops->open)
@@ -464,26 +459,4 @@
 }
 
-/** Notify the NET service that the device is ready
- *
- * @param nic NICF structure
- *
- * @return EOK on success
- *
- */
-int nic_ready(nic_t *nic)
-{
-	fibril_rwlock_read_lock(&nic->main_lock);
-	
-	async_sess_t *session = nic->net_session;
-	devman_handle_t handle = nic->dev->handle;
-	
-	fibril_rwlock_read_unlock(&nic->main_lock);
-	
-	if (session == NULL)
-		return EINVAL;
-	
-	return net_driver_ready(session, handle);
-}
-
 /** Inform the NICF about poll mode
  *
Index: uspace/lib/nic/src/nic_impl.c
===================================================================
--- uspace/lib/nic/src/nic_impl.c	(revision e86b8f0a4a36b968e6ed12053ec2fbf42b8b5f9e)
+++ uspace/lib/nic/src/nic_impl.c	(revision 77a69ea2b4d9de163884f75870b8a88e2f717139)
@@ -805,16 +805,4 @@
 }
 
-/** Default implementation of the device_added method
- *
- * Just calls nic_ready.
- *
- * @param dev
- *
- */
-void nic_device_added_impl(ddf_dev_t *dev)
-{
-	nic_ready((nic_t *) dev->driver_data);
-}
-
 /**
  * Default handler for unknown methods (outside of the NIC interface).
