Index: uspace/lib/drv/generic/driver.c
===================================================================
--- uspace/lib/drv/generic/driver.c	(revision 1e5d01bb594a6e472579d21a7da4f3f782adddad)
+++ uspace/lib/drv/generic/driver.c	(revision 4bf0926eafdfba5eb055645d92feb2f44e40542f)
@@ -126,5 +126,5 @@
 		return;
 	}
-
+	
 	ddf_dev_t *dev = create_device();
 	if (!dev) {
@@ -133,5 +133,5 @@
 		return;
 	}
-
+	
 	/* Add one reference that will be dropped by driver_dev_remove() */
 	dev_add_ref(dev);
Index: uspace/lib/drv/generic/remote_ahci.c
===================================================================
--- uspace/lib/drv/generic/remote_ahci.c	(revision 1e5d01bb594a6e472579d21a7da4f3f782adddad)
+++ uspace/lib/drv/generic/remote_ahci.c	(revision 4bf0926eafdfba5eb055645d92feb2f44e40542f)
@@ -226,5 +226,5 @@
 		return;
 	}	
-
+	
 	const int ret = ahci_iface->get_sata_device_name(fun,
 	    sata_dev_name_length, sata_dev_name);
@@ -235,5 +235,5 @@
 	    (real_size == sata_dev_name_length))
 		async_data_read_finalize(cid, sata_dev_name, sata_dev_name_length);
-
+	
 	free(sata_dev_name);
 	async_answer_0(callid, ret);
Index: uspace/lib/drv/generic/remote_usb.c
===================================================================
--- uspace/lib/drv/generic/remote_usb.c	(revision 1e5d01bb594a6e472579d21a7da4f3f782adddad)
+++ uspace/lib/drv/generic/remote_usb.c	(revision 4bf0926eafdfba5eb055645d92feb2f44e40542f)
@@ -91,7 +91,10 @@
 
 /** Tell devman handle of the usb device function.
- * @param[in] exch IPC communication exchange
+ *
+ * @param[in]  exch   IPC communication exchange
  * @param[out] handle devman handle of the HC used by the target device.
+ *
  * @return Error code.
+ *
  */
 int usb_get_my_device_handle(async_exch_t *exch, devman_handle_t *handle)
@@ -119,6 +122,9 @@
 
 /** Release default USB address.
+ *
  * @param[in] exch IPC communication exchange
+ *
  * @return Error code.
+ *
  */
 int usb_release_default_address(async_exch_t *exch)
@@ -131,7 +137,10 @@
 
 /** Trigger USB device enumeration
- * @param[in] exch IPC communication exchange
+ *
+ * @param[in]  exch   IPC communication exchange
  * @param[out] handle Identifier of the newly added device (if successful)
+ *
  * @return Error code.
+ *
  */
 int usb_device_enumerate(async_exch_t *exch, unsigned port)
@@ -145,7 +154,10 @@
 
 /** Trigger USB device enumeration
- * @param[in] exch IPC communication exchange
+ *
+ * @param[in] exch   IPC communication exchange
  * @param[in] handle Identifier of the device
+ *
  * @return Error code.
+ *
  */
 int usb_device_remove(async_exch_t *exch, unsigned port)
