Index: uspace/drv/uhci/root_hub/debug.h
===================================================================
--- uspace/drv/uhci/root_hub/debug.h	(revision 816175a218178c5741afdf598c4791458f88dae6)
+++ uspace/drv/uhci/root_hub/debug.h	(revision 245b56b527adad83de301d5bd93c7027126ba6a6)
@@ -38,5 +38,6 @@
 #include <usb/debug.h>
 
-#define NAME "uhci_root_hub"
+#define NAME "uhci_root_hubd"
+
 enum debug_levels {
 	DEBUG_LEVEL_FATAL_ERROR = 1,
Index: uspace/drv/uhci/root_hub/port.c
===================================================================
--- uspace/drv/uhci/root_hub/port.c	(revision 816175a218178c5741afdf598c4791458f88dae6)
+++ uspace/drv/uhci/root_hub/port.c	(revision 245b56b527adad83de301d5bd93c7027126ba6a6)
@@ -1,6 +1,6 @@
 
 #include <errno.h>
-#include <usb/usb.h>
-#include <usb/usbdrv.h>
+#include <usb/usb.h>    /* usb_address_t */
+#include <usb/usbdrv.h> /* usb_drv_*     */
 
 #include "debug.h"
@@ -121,4 +121,6 @@
 		return ENOMEM;
 	}
+	uhci_print_info("Sucessfully added device on port(%d) address(%d).\n",
+		port->number, usb_address);
 
 	/* TODO: bind the address here */
Index: uspace/drv/uhci/root_hub/port.h
===================================================================
--- uspace/drv/uhci/root_hub/port.h	(revision 816175a218178c5741afdf598c4791458f88dae6)
+++ uspace/drv/uhci/root_hub/port.h	(revision 245b56b527adad83de301d5bd93c7027126ba6a6)
@@ -36,5 +36,5 @@
 
 #include <assert.h>
-#include <driver.h>
+#include <driver.h> /* device_t */
 #include <stdint.h>
 
@@ -55,5 +55,5 @@
   unsigned usec)
 {
-	assert( port );
+	assert(port);
 	port->address = address;
 	port->hc = hc;
Index: uspace/drv/uhci/root_hub/root_hub.c
===================================================================
--- uspace/drv/uhci/root_hub/root_hub.c	(revision 816175a218178c5741afdf598c4791458f88dae6)
+++ uspace/drv/uhci/root_hub/root_hub.c	(revision 245b56b527adad83de301d5bd93c7027126ba6a6)
@@ -8,5 +8,4 @@
 #include "root_hub.h"
 
-#define ROOT_HUB_WAIT_USEC 10000000 /* 10 seconds */
 
 int uhci_root_hub_init( uhci_root_hub_t *hub, device_t *hc, void *addr )
Index: uspace/drv/uhci/root_hub/root_hub.h
===================================================================
--- uspace/drv/uhci/root_hub/root_hub.h	(revision 816175a218178c5741afdf598c4791458f88dae6)
+++ uspace/drv/uhci/root_hub/root_hub.h	(revision 245b56b527adad83de301d5bd93c7027126ba6a6)
@@ -36,5 +36,5 @@
 
 #include <fibril.h>
-#include <driver.h>
+#include <driver.h> /* for device_t */
 
 #include "port.h"
@@ -42,4 +42,5 @@
 #define UHCI_ROOT_HUB_PORT_COUNT 2
 #define UHCI_ROOT_HUB_PORT_REGISTERS_OFFSET 0x10
+#define ROOT_HUB_WAIT_USEC 10000000 /* 10 seconds */
 
 typedef struct root_hub {
