Index: uspace/drv/vhc/connhost.c
===================================================================
--- uspace/drv/vhc/connhost.c	(revision 8555112eed1f93571d59abb8b368b4809b51956a)
+++ uspace/drv/vhc/connhost.c	(revision 69b1f3dc9ee049d62dcc1a80ffae19ff14059580)
@@ -64,5 +64,5 @@
 
 static void universal_callback(void *buffer, size_t size,
-    usb_transaction_outcome_t outcome, void *arg)
+    int outcome, void *arg)
 {
 	transfer_info_t *transfer = (transfer_info_t *) arg;
@@ -107,5 +107,5 @@
 
 static void control_abort_prematurely(control_transfer_info_t *transfer,
-    size_t size, usb_transaction_outcome_t outcome)
+    size_t size, int outcome)
 {
 	switch (transfer->direction) {
@@ -127,9 +127,9 @@
 
 static void control_callback_two(void *buffer, size_t size,
-    usb_transaction_outcome_t outcome, void *arg)
+    int outcome, void *arg)
 {
 	control_transfer_info_t *ctrl_transfer = (control_transfer_info_t *) arg;
 
-	if (outcome != USB_OUTCOME_OK) {
+	if (outcome != EOK) {
 		control_abort_prematurely(ctrl_transfer, outcome, size);
 		free(ctrl_transfer);
@@ -165,9 +165,9 @@
 
 static void control_callback_one(void *buffer, size_t size,
-    usb_transaction_outcome_t outcome, void *arg)
+    int outcome, void *arg)
 {
 	control_transfer_info_t *transfer = (control_transfer_info_t *) arg;
 
-	if (outcome != USB_OUTCOME_OK) {
+	if (outcome != EOK) {
 		control_abort_prematurely(transfer, outcome, size);
 		free(transfer);
Index: uspace/drv/vhc/devices.c
===================================================================
--- uspace/drv/vhc/devices.c	(revision 8555112eed1f93571d59abb8b368b4809b51956a)
+++ uspace/drv/vhc/devices.c	(revision 69b1f3dc9ee049d62dcc1a80ffae19ff14059580)
@@ -112,5 +112,5 @@
  * @param transaction Transaction to be sent over the bus.
  */
-usb_transaction_outcome_t virtdev_send_to_all(transaction_t *transaction)
+int virtdev_send_to_all(transaction_t *transaction)
 {
 	/* For easier debugging. */
@@ -126,5 +126,5 @@
 			assert(false && "unreachable branch in switch()");
 	}
-	usb_transaction_outcome_t outcome = USB_OUTCOME_BABBLE;
+	int outcome = EBADCHECKSUM;
 
 	link_t *pos;
@@ -185,5 +185,5 @@
 		 */
 		if (rc == EOK) {
-			outcome = USB_OUTCOME_OK;
+			outcome = EOK;
 		}
 	}
@@ -221,5 +221,5 @@
 				break;
 		}
-		outcome = USB_OUTCOME_OK;
+		outcome = EOK;
 	}
 	
Index: uspace/drv/vhc/devices.h
===================================================================
--- uspace/drv/vhc/devices.h	(revision 8555112eed1f93571d59abb8b368b4809b51956a)
+++ uspace/drv/vhc/devices.h	(revision 69b1f3dc9ee049d62dcc1a80ffae19ff14059580)
@@ -54,5 +54,5 @@
 virtdev_connection_t *virtdev_find(sysarg_t);
 void virtdev_destroy_device(virtdev_connection_t *);
-usb_transaction_outcome_t virtdev_send_to_all(transaction_t *);
+int virtdev_send_to_all(transaction_t *);
 
 #endif
Index: uspace/drv/vhc/hc.c
===================================================================
--- uspace/drv/vhc/hc.c	(revision 8555112eed1f93571d59abb8b368b4809b51956a)
+++ uspace/drv/vhc/hc.c	(revision 69b1f3dc9ee049d62dcc1a80ffae19ff14059580)
@@ -89,9 +89,9 @@
  */
 static void process_transaction_with_outcome(transaction_t * transaction,
-    usb_transaction_outcome_t outcome)
+    int outcome)
 {
 	usb_log_debug2("Transaction " TRANSACTION_FORMAT " done: %s.\n",
 	    TRANSACTION_PRINTF(*transaction),
-	    usb_str_transaction_outcome(outcome));
+	    str_error(outcome));
 	
 	transaction->callback(transaction->buffer, transaction->actual_len,
@@ -127,5 +127,5 @@
 		    TRANSACTION_PRINTF(*transaction), ports);
 
-		usb_transaction_outcome_t outcome;
+		int outcome;
 		outcome = virtdev_send_to_all(transaction);
 		
Index: uspace/drv/vhc/hc.h
===================================================================
--- uspace/drv/vhc/hc.h	(revision 8555112eed1f93571d59abb8b368b4809b51956a)
+++ uspace/drv/vhc/hc.h	(revision 69b1f3dc9ee049d62dcc1a80ffae19ff14059580)
@@ -47,5 +47,5 @@
  */
 typedef void (*hc_transaction_done_callback_t)(void *buffer, size_t size,
-    usb_transaction_outcome_t outcome, void *arg);
+    int outcome, void *arg);
 
 /** Pending transaction details. */
