Index: uspace/drv/bus/usb/ehci/ehci_batch.c
===================================================================
--- uspace/drv/bus/usb/ehci/ehci_batch.c	(revision 3c594ff96fb744f7da7ee825e6338d60a6342120)
+++ uspace/drv/bus/usb/ehci/ehci_batch.c	(revision 23678f3c35f4d0023da885e8ec0bf5d0c7240df5)
@@ -267,5 +267,6 @@
 	assert(dir == USB_DIRECTION_IN || dir == USB_DIRECTION_OUT);
 
-	usb_log_debug2("Control QH: %08x:%08x:%08x:%08x:%08x:%08x",
+	usb_log_debug2("Control QH(%"PRIxn"): %08x:%08x:%08x:%08x:%08x:%08x",
+	    addr_to_phys(ehci_batch->qh),
 	    ehci_batch->qh->ep_char, ehci_batch->qh->ep_cap,
 	    ehci_batch->qh->status, ehci_batch->qh->current,
@@ -285,5 +286,6 @@
 	    ehci_batch->tds[0], ehci_batch->tds[1], USB_DIRECTION_BOTH,
 	    buffer, ehci_batch->usb_batch->setup_size, toggle, false);
-	usb_log_debug("Created CONTROL SETUP TD: %08x:%08x:%08x",
+	usb_log_debug("Created CONTROL SETUP TD(%"PRIxn"): %08x:%08x:%08x",
+	    addr_to_phys(ehci_batch->qh),
 	    ehci_batch->tds[0]->status, ehci_batch->tds[0]->next,
 	    ehci_batch->tds[0]->alternate);
@@ -301,5 +303,6 @@
 		    ehci_batch->tds[td_current + 1], data_dir, buffer,
 		    transfer_size, toggle, false);
-		usb_log_debug("Created CONTROL DATA TD: %08x:%08x:%08x",
+		usb_log_debug2("Created CONTROL DATA TD(%"PRIxn"): %08x:%08x:%08x",
+		    addr_to_phys(ehci_batch->qh),
 		    ehci_batch->tds[td_current]->status,
 		    ehci_batch->tds[td_current]->next,
@@ -316,5 +319,6 @@
 	td_init(ehci_batch->tds[td_current], ehci_batch->tds[td_current + 1],
 	    status_dir, NULL, 0, 1, true);
-	usb_log_debug("Created CONTROL STATUS TD: %08x:%08x:%08x",
+	usb_log_debug("Created CONTROL STATUS TD(%"PRIxn"): %08x:%08x:%08x",
+	    addr_to_phys(ehci_batch->qh),
 	    ehci_batch->tds[td_current]->status,
 	    ehci_batch->tds[td_current]->next,
@@ -359,5 +363,6 @@
 		    dir, buffer, transfer_size, -1, remain_size == transfer_size);
 
-		usb_log_debug("Created DATA TD: %08x:%08x:%08x",
+		usb_log_debug("Created DATA TD(%"PRIxn": %08x:%08x:%08x",
+		    addr_to_phys(ehci_batch->qh),
 		    ehci_batch->tds[td_current]->status,
 		    ehci_batch->tds[td_current]->next,
