Index: uspace/drv/uhci-rhd/root_hub.c
===================================================================
--- uspace/drv/uhci-rhd/root_hub.c	(revision 1256a0a8bd51a5f673fce31e8397498509b6127d)
+++ uspace/drv/uhci-rhd/root_hub.c	(revision afcd86e9f09edc94d52d75cd6c0f642518cdbc25)
@@ -6,6 +6,6 @@
 
 #include <usb/usbdrv.h>
+#include <usb/debug.h>
 
-#include "debug.h"
 #include "root_hub.h"
 
@@ -18,5 +18,5 @@
 	int ret;
 	ret = usb_drv_find_hc(rh, &instance->hc_handle);
-	uhci_print_info("rh found(%d) hc handle: %d.\n", ret, instance->hc_handle);
+	usb_log_info("rh found(%d) hc handle: %d.\n", ret, instance->hc_handle);
 	if (ret != EOK) {
 		return ret;
@@ -27,5 +27,5 @@
 	//usb_drv_hc_connect(rh, instance->hc_handle, 0);
 	if (rh->parent_phone < 0) {
-		uhci_print_error("Failed to connect to the HC device.\n");
+		usb_log_error("Failed to connect to the HC device.\n");
 		return rh->parent_phone;
 	}
@@ -38,5 +38,5 @@
 
 	if (ret < 0) {
-		uhci_print_error(": Failed to gain access to port registers at %p\n", regs);
+		usb_log_error("Failed to gain access to port registers at %p\n", regs);
 		return ret;
 	}
