Index: uspace/drv/uhci-hcd/transfer_list.c
===================================================================
--- uspace/drv/uhci-hcd/transfer_list.c	(revision e099f264aa055ac645611d5b7f9a7720a42190af)
+++ uspace/drv/uhci-hcd/transfer_list.c	(revision c56c5b5b306dd05373aa73c0404742419a4e0cae)
@@ -110,5 +110,5 @@
 		last_qh = batch_qh(last);
 	}
-	const uint32_t pa = addr_to_phys(batch->qh);
+	const uint32_t pa = addr_to_phys(batch_qh(batch));
 	assert((pa & LINK_POINTER_ADDRESS_MASK) == pa);
 
@@ -205,5 +205,5 @@
 		/* I'm the first one here */
 		assert((instance->queue_head->next & LINK_POINTER_ADDRESS_MASK)
-		    == addr_to_phys(bathc_qh(batch)));
+		    == addr_to_phys(batch_qh(batch)));
 		instance->queue_head->next = batch_qh(batch)->next;
 		qpos = "FIRST";
@@ -219,5 +219,5 @@
 	list_remove(&batch->link);
 	usb_log_debug("Batch(%p) removed (%s) from %s, next %x.\n",
-	    batch, pos, instance->name, batch_qh(batch)->next);
+	    batch, qpos, instance->name, batch_qh(batch)->next);
 }
 /**
