Index: uspace/lib/usbhost/include/usb/host/hcd.h
===================================================================
--- uspace/lib/usbhost/include/usb/host/hcd.h	(revision 1433ecda9b732f3f185f902feb26826ec2496e03)
+++ uspace/lib/usbhost/include/usb/host/hcd.h	(revision ed88c8e9e48e792fdd0df46568e33e36eb624db3)
@@ -45,5 +45,6 @@
 typedef struct device device_t;
 
-/* Treat this header as read-only in driver code.
+/*
+ * Treat this header as read-only in driver code.
  * It could be opaque, but why to complicate matters.
  */
@@ -71,5 +72,6 @@
 
 	/** Size of the device data to be allocated, and passed as the
-	 * hc_device_t. */
+	 * hc_device_t.
+	 */
 	size_t hc_device_size;
 
Index: uspace/lib/usbhost/include/usb/host/usb_transfer_batch.h
===================================================================
--- uspace/lib/usbhost/include/usb/host/usb_transfer_batch.h	(revision 1433ecda9b732f3f185f902feb26826ec2496e03)
+++ uspace/lib/usbhost/include/usb/host/usb_transfer_batch.h	(revision ed88c8e9e48e792fdd0df46568e33e36eb624db3)
@@ -97,5 +97,5 @@
  * Printf formatting string for dumping usb_transfer_batch_t.
  *  [address:endpoint speed transfer_type-direction buffer_sizeB/max_packet_size]
- * */
+ */
 #define USB_TRANSFER_BATCH_FMT "[%d:%d %s %s-%s %zuB/%zu]"
 
Index: uspace/lib/usbhost/include/usb/host/utils/malloc32.h
===================================================================
--- uspace/lib/usbhost/include/usb/host/utils/malloc32.h	(revision 1433ecda9b732f3f185f902feb26826ec2496e03)
+++ uspace/lib/usbhost/include/usb/host/utils/malloc32.h	(revision ed88c8e9e48e792fdd0df46568e33e36eb624db3)
@@ -43,5 +43,6 @@
 #include <stdint.h>
 
-/* Generic TDs and EDs require 16byte alignment,
+/*
+ * Generic TDs and EDs require 16byte alignment,
  * Isochronous TD require 32byte alignment,
  * buffers do not have to be aligned.
@@ -83,6 +84,8 @@
 
 	if (ret == EOK) {
-		/* Poison, accessing it should be enough to make sure
-		 * the location is mapped, but poison works better */
+		/*
+		 * Poison, accessing it should be enough to make sure
+		 * the location is mapped, but poison works better
+		 */
 		memset(address, 0x5, real_size);
 		return address;
