Index: uspace/drv/bus/usb/ohci/ohci_batch.c
===================================================================
--- uspace/drv/bus/usb/ohci/ohci_batch.c	(revision 57e06ef438456990c2fdcdff3e56ebd1b0fa0c97)
+++ uspace/drv/bus/usb/ohci/ohci_batch.c	(revision 549ff23eeccbe3fe8e6eb34fffc58415a5e01252)
@@ -59,5 +59,5 @@
 		free(ohci_batch->tds);
 	}
-	usb_transfer_batch_dispose(ohci_batch->usb_batch);
+	usb_transfer_batch_destroy(ohci_batch->usb_batch);
 	free32(ohci_batch->device_buffer);
 	free(ohci_batch);
Index: uspace/drv/bus/usb/ohci/root_hub.c
===================================================================
--- uspace/drv/bus/usb/ohci/root_hub.c	(revision 57e06ef438456990c2fdcdff3e56ebd1b0fa0c97)
+++ uspace/drv/bus/usb/ohci/root_hub.c	(revision 549ff23eeccbe3fe8e6eb34fffc58415a5e01252)
@@ -235,5 +235,5 @@
 		usb_transfer_batch_finish_error(request, NULL, 0, EINVAL);
 	}
-	usb_transfer_batch_dispose(request);
+	usb_transfer_batch_destroy(request);
 }
 /*----------------------------------------------------------------------------*/
@@ -254,5 +254,5 @@
 		interrupt_request(instance->unfinished_interrupt_transfer,
 		    mask, instance->interrupt_mask_size);
-		usb_transfer_batch_dispose(
+		usb_transfer_batch_destroy(
 		    instance->unfinished_interrupt_transfer);
 		instance->unfinished_interrupt_transfer = NULL;
Index: uspace/drv/bus/usb/uhci/uhci_batch.c
===================================================================
--- uspace/drv/bus/usb/uhci/uhci_batch.c	(revision 57e06ef438456990c2fdcdff3e56ebd1b0fa0c97)
+++ uspace/drv/bus/usb/uhci/uhci_batch.c	(revision 549ff23eeccbe3fe8e6eb34fffc58415a5e01252)
@@ -48,5 +48,5 @@
 {
 	if (uhci_batch) {
-		usb_transfer_batch_dispose(uhci_batch->usb_batch);
+		usb_transfer_batch_destroy(uhci_batch->usb_batch);
 		free32(uhci_batch->device_buffer);
 		free(uhci_batch);
