Index: uspace/drv/bus/usb/uhci/main.c
===================================================================
--- uspace/drv/bus/usb/uhci/main.c	(revision 5203e2569a38ea677d1b3f202650bb36f9609583)
+++ uspace/drv/bus/usb/uhci/main.c	(revision 5bf76c164fa130e2a664b14a5d195687bf11e6e2)
@@ -64,13 +64,14 @@
 	assert(device);
 
-	int ret = device_setup_uhci(device);
+	const int ret = device_setup_uhci(device);
 	if (ret != EOK) {
 		usb_log_error("Failed to initialize UHCI driver: %s.\n",
 		    str_error(ret));
-		return ret;
+	} else {
+		usb_log_info("Controlling new UHCI device '%s'.\n",
+		    device->name);
 	}
-	usb_log_info("Controlling new UHCI device '%s'.\n", device->name);
 
-	return EOK;
+	return ret;
 }
 /*----------------------------------------------------------------------------*/
