Index: uspace/drv/bus/usb/ehci/endpoint_list.c
===================================================================
--- uspace/drv/bus/usb/ehci/endpoint_list.c	(revision 6de4b4a1ed8fdb0c375d1adf0c5b492851b48d66)
+++ uspace/drv/bus/usb/ehci/endpoint_list.c	(revision 954d5900d449299386746f7c8feba0e82d52bae9)
@@ -56,5 +56,6 @@
 	instance->list_head = malloc32(sizeof(qh_t));
 	if (!instance->list_head) {
-		usb_log_error("Failed to allocate list head.\n");
+		usb_log_error("EPL(%p-%s): Failed to allocate list head.",
+		    instance, name);
 		return ENOMEM;
 	}
@@ -62,8 +63,10 @@
 
 	list_initialize(&instance->endpoint_list);
-	usb_log_debug2("Transfer list %s setup with ED: %p(%"PRIxn").\n",
-	    name, instance->list_head, addr_to_phys(instance->list_head));
+	fibril_mutex_initialize(&instance->guard);
 
-	fibril_mutex_initialize(&instance->guard);
+	usb_log_debug2("EPL(%p-%s): Transfer list setup with ED: %p(%"PRIxn").",
+	    instance, name, instance->list_head,
+	    addr_to_phys(instance->list_head));
+
 	return EOK;
 }
@@ -75,4 +78,7 @@
 	assert(instance->list_head);
 	assert(next->list_head);
+
+	usb_log_debug2("EPL(%p-%s): Chained with EPL(%p-%s).",
+	    instance, instance->name, next, next->name);
 
 	qh_append_qh(instance->list_head, next->list_head);
@@ -91,5 +97,6 @@
 	assert(ep);
 	assert(ep->qh);
-	usb_log_debug2("Queue %s: Append endpoint(%p).\n", instance->name, ep);
+	usb_log_debug2("EPL(%p-%s): Append endpoint(%p).\n",
+	    instance, instance->name, ep);
 
 	fibril_mutex_lock(&instance->guard);
@@ -121,9 +128,10 @@
 	ehci_endpoint_t *first = ehci_endpoint_list_instance(
 	    list_first(&instance->endpoint_list));
-	usb_log_debug("HCD EP(%p) added to list %s, first is %p(%p).\n",
-		ep, instance->name, first, first->qh);
+	usb_log_debug("EPL(%p-%s): EP(%p) added to list, first is %p(%p).\n",
+	    instance, instance->name, ep, first, first->qh);
 	if (last_qh == instance->list_head) {
-		usb_log_debug2("%s head ED(%p-%"PRIxn"): %x:%x.\n",
-		    instance->name, last_qh, addr_to_phys(instance->list_head),
+		usb_log_debug2("EPL(%p-%s): head EP(%p-%"PRIxn"): %x:%x.\n",
+		    instance, instance->name, last_qh,
+		    addr_to_phys(instance->list_head),
 		    last_qh->status, last_qh->horizontal);
 	}
@@ -145,5 +153,6 @@
 	fibril_mutex_lock(&instance->guard);
 
-	usb_log_debug2("Queue %s: removing endpoint(%p).\n", instance->name, ep);
+	usb_log_debug2("EPL(%p-%s): removing EP(%p).\n",
+	    instance, instance->name, ep);
 
 	const char *qpos = NULL;
@@ -163,6 +172,6 @@
 	write_barrier();
 
-	usb_log_debug("HCD EP(%p) removed (%s) from %s, horizontal %x.\n",
-	    ep, qpos, instance->name, ep->qh->horizontal);
+	usb_log_debug("EPL(%p-%s): EP(%p) removed (%s), horizontal %x.\n",
+	    instance, instance->name,  ep, qpos, ep->qh->horizontal);
 
 	/* Remove from the endpoint list */
