Index: uspace/lib/usbhost/src/iface.c
===================================================================
--- uspace/lib/usbhost/src/iface.c	(revision db71e2af5cdfe169de296e6f39b3e5eda7a966f6)
+++ uspace/lib/usbhost/src/iface.c	(revision b0fc92c51f81f569086cf49f631e3011959cbd53)
@@ -41,21 +41,4 @@
 #include <usb/host/hcd.h>
 #include "ddf_helpers.h"
-
-/** Find device handle by address interface function.
- *
- * @param[in] fun DDF function that was called.
- * @param[in] address Address in question.
- * @param[out] handle Where to store device handle if found.
- * @return Error code.
- */
-static int find_by_address(ddf_fun_t *fun, usb_address_t address,
-    devman_handle_t *handle)
-{
-	assert(fun);
-	hcd_t *hcd = dev_to_hcd(ddf_fun_get_dev(fun));
-	assert(hcd);
-	return usb_device_manager_get_info_by_address(
-	    &hcd->dev_manager, address, handle, NULL);
-}
 
 /** Register endpoint interface function.
@@ -148,6 +131,4 @@
 /** usbhc Interface implementation using hcd_t from libusbhost library. */
 usbhc_iface_t hcd_iface = {
-	.get_handle = find_by_address,
-
 	.register_endpoint = register_endpoint,
 	.unregister_endpoint = unregister_endpoint,
