Index: uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.c
===================================================================
--- uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.c	(revision ee1c2d9cd5399d6bcfa9ffa802a3e8598188074b)
+++ uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.c	(revision a15784655e146c5670ae00131f7aaef9823d465d)
@@ -59,5 +59,5 @@
 	}
 	if (status & TD_STATUS_ACTIVE_FLAG)
-		return EINPROGRESS;
+		return EBUSY;
 	return EOK;
 }
Index: uspace/lib/usbhost/src/hcd.c
===================================================================
--- uspace/lib/usbhost/src/hcd.c	(revision ee1c2d9cd5399d6bcfa9ffa802a3e8598188074b)
+++ uspace/lib/usbhost/src/hcd.c	(revision a15784655e146c5670ae00131f7aaef9823d465d)
@@ -277,5 +277,5 @@
 {
 	assert(hcd);
-	sync_data_t sd = { .done = 0, .ret = EINPROGRESS, .size = size };
+	sync_data_t sd = { .done = 0, .ret = EBUSY, .size = size };
 
 	const int ret = hcd_send_batch(hcd, target, dir, data, size, setup_data,
