Index: uspace/drv/bus/usb/xhci/main.c
===================================================================
--- uspace/drv/bus/usb/xhci/main.c	(revision 0f6b50f8f7c45af4a886d0766e10103b27242002)
+++ uspace/drv/bus/usb/xhci/main.c	(revision 1fd2f81d2da4371d60202e031700b7eb53474741)
@@ -51,5 +51,4 @@
 static int hcd_claim(hcd_t *, ddf_dev_t *);
 static int hcd_start(hcd_t *, bool);
-static int hcd_setup_root_hub(hcd_t *, ddf_dev_t *);
 static int hcd_status(hcd_t *, uint32_t *);
 static void hcd_interrupt(hcd_t *, uint32_t);
@@ -63,5 +62,5 @@
 	.claim = hcd_claim,
 	.start = hcd_start,
-	.setup_root_hub = hcd_setup_root_hub,
+	.setup_root_hub = NULL,
 	.fini = hc_driver_fini,
 	.ops = {
@@ -117,12 +116,4 @@
 
 	return hc_start(hc, irq);
-}
-
-static int hcd_setup_root_hub(hcd_t *hcd, ddf_dev_t *dev)
-{
-	xhci_hc_t *hc = hcd_get_driver_data(hcd);
-	assert(hc);
-
-	return EOK;
 }
 
