Index: uspace/lib/usbvirt/src/device.c
===================================================================
--- uspace/lib/usbvirt/src/device.c	(revision b7fd2a02e4161f4edd38548e7f8456b8021549be)
+++ uspace/lib/usbvirt/src/device.c	(revision f1380b76772fb5d1aa03637b5e57bd9b929fea61)
@@ -86,29 +86,29 @@
 	if (DEV != NULL)
 		return ELIMIT;
-	
+
 	devman_handle_t handle;
 	errno_t rc = devman_fun_get_handle(vhc_path, &handle, 0);
 	if (rc != EOK)
 		return rc;
-	
+
 	async_sess_t *hcd_sess =
 	    devman_device_connect(handle, 0);
 	if (!hcd_sess)
 		return ENOMEM;
-	
+
 	DEV = dev;
 	dev->vhc_sess = hcd_sess;
-	
+
 	async_exch_t *exch = async_exchange_begin(hcd_sess);
-	
+
 	port_id_t port;
 	rc = async_create_callback_port(exch, INTERFACE_USBVIRT_CB, 0, 0,
 	    callback_connection, NULL, &port);
-	
+
 	async_exchange_end(exch);
-	
+
 	if (rc != EOK)
 		DEV = NULL;
-	
+
 	return rc;
 }
