Index: uspace/drv/ehci-hcd/ehci.h
===================================================================
--- uspace/drv/ehci-hcd/ehci.h	(revision f51594fa247adfd2d5fa65d21cedcb9e19c84600)
+++ uspace/drv/ehci-hcd/ehci.h	(revision 81608b5b359b112e981586e7b2d8812f0eecbd34)
@@ -38,4 +38,6 @@
 #include <usbhc_iface.h>
 
+#define NAME "ehci-hcd"
+
 extern usbhc_iface_t ehci_hc_iface;
 
Index: uspace/drv/ehci-hcd/main.c
===================================================================
--- uspace/drv/ehci-hcd/main.c	(revision f51594fa247adfd2d5fa65d21cedcb9e19c84600)
+++ uspace/drv/ehci-hcd/main.c	(revision 81608b5b359b112e981586e7b2d8812f0eecbd34)
@@ -46,6 +46,4 @@
 #include "ehci.h"
 
-#define NAME "ehci-hcd"
-
 static int ehci_add_device(ddf_dev_t *device);
 /*----------------------------------------------------------------------------*/
@@ -77,6 +75,4 @@
 }
 
-	usb_log_info("uhci_add_device() called\n");
-
 	uintptr_t mem_reg_base = 0;
 	size_t mem_reg_size = 0;
@@ -106,4 +102,7 @@
 	    str_error(ret));
 
+	usb_log_info("Controlling new EHCI device `%s' (handle %llu).\n",
+	    device->name, device->handle);
+
 	return EOK;
 #undef CHECK_RET_RETURN
@@ -120,5 +119,5 @@
 int main(int argc, char *argv[])
 {
-	usb_log_enable(USB_LOG_LEVEL_ERROR, NAME);
+	usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
 	return ddf_driver_main(&ehci_driver);
 }
