Index: uspace/lib/usb/src/usbdrv.c
===================================================================
--- uspace/lib/usb/src/usbdrv.c	(revision 6f04905f9ddbb7f611f70524726f8a97cf833c6f)
+++ uspace/lib/usb/src/usbdrv.c	(revision 9ca001350dd87a5fbe5c002091a42f437f607c8c)
@@ -136,4 +136,20 @@
 }
 
+/** Inform HC about binding address with devman handle.
+ *
+ * @param phone Open phone to host controller driver.
+ * @param address Address to be binded.
+ * @param handle Devman handle of the device.
+ * @return Error code.
+ */
+int usb_drv_bind_address(int phone, usb_address_t address,
+    devman_handle_t handle)
+{
+	int rc = async_req_2_0(phone, IPC_M_USBHC_BIND_ADDRESS,
+	    address, handle);
+
+	return rc;
+}
+
 /** Inform HC about address release.
  *
