Index: uspace/drv/vhc/hcd.c
===================================================================
--- uspace/drv/vhc/hcd.c	(revision 63b4f90725d28de0589f88b5750edf8a9c29b84e)
+++ uspace/drv/vhc/hcd.c	(revision 7034be15c0af2249a6ef774fecbf440e2c7a3ef4)
@@ -66,6 +66,11 @@
 
 	dev->transfer_ops = &vhc_transfer_ops;
-	/* Fail because of bug in libusb that caused devman to hang. */
-	return ENOTSUP;
+
+	/*
+	 * Announce that we have some root hub present.
+	 */
+	usb_hcd_add_root_hub(dev);
+
+	return EOK;
 }
 
@@ -77,10 +82,4 @@
 int main(int argc, char * argv[])
 {	
-	/*
-	 * For debugging purpose to enable viewing the output
-	 * within devman tty.
-	 */
-	sleep(5);
-
 	printf("%s: virtual USB host controller driver.\n", NAME);
 
