Index: uspace/lib/usbhost/include/usb/host/hcd.h
===================================================================
--- uspace/lib/usbhost/include/usb/host/hcd.h	(revision f9d0a86c86defda4d9f30fbb4f7217a75048bf8b)
+++ uspace/lib/usbhost/include/usb/host/hcd.h	(revision a1f83a33fab2ba766d665cd2f41debff28491e6d)
@@ -102,11 +102,4 @@
 }
 
-extern usb_address_t hcd_request_address(hcd_t *, usb_speed_t);
-
-extern int hcd_add_ep(hcd_t *, usb_target_t, usb_direction_t,
-    usb_transfer_type_t, size_t, unsigned int, size_t, usb_tt_address_t);
-
-extern int hcd_remove_ep(hcd_t *, usb_target_t, usb_direction_t);
-
 extern int hcd_send_batch(hcd_t *, device_t *, usb_target_t,
     usb_direction_t direction, char *, size_t, uint64_t,
Index: uspace/lib/usbhost/src/hcd.c
===================================================================
--- uspace/lib/usbhost/src/hcd.c	(revision f9d0a86c86defda4d9f30fbb4f7217a75048bf8b)
+++ uspace/lib/usbhost/src/hcd.c	(revision a1f83a33fab2ba766d665cd2f41debff28491e6d)
@@ -58,14 +58,4 @@
 
 	hcd_set_implementation(hcd, NULL, NULL, NULL);
-}
-
-usb_address_t hcd_request_address(hcd_t *hcd, usb_speed_t speed)
-{
-	assert(hcd);
-	usb_address_t address = 0;
-	const int ret = bus_request_address(hcd->bus, &address, false, speed);
-	if (ret != EOK)
-		return ret;
-	return address;
 }
 
