Index: uspace/lib/usbhost/include/usb/host/bus.h
===================================================================
--- uspace/lib/usbhost/include/usb/host/bus.h	(revision e0a5d4cfd543daee5dd5a861793ddd18dcb32c0b)
+++ uspace/lib/usbhost/include/usb/host/bus.h	(revision b2dca8de8634dcb5e4d4674aa9007210da4bc6a4)
@@ -111,5 +111,6 @@
 	int (*device_online)(device_t *);			/**< Optional */
 	void (*device_offline)(device_t *);			/**< Optional */
-	endpoint_t *(*endpoint_create)(device_t *, const usb_endpoint_descriptors_t *);
+	endpoint_t *(*endpoint_create)(device_t *,
+	    const usb_endpoint_descriptors_t *);
 
 	/* Operations on endpoint */
Index: uspace/lib/usbhost/include/usb/host/endpoint.h
===================================================================
--- uspace/lib/usbhost/include/usb/host/endpoint.h	(revision e0a5d4cfd543daee5dd5a861793ddd18dcb32c0b)
+++ uspace/lib/usbhost/include/usb/host/endpoint.h	(revision b2dca8de8634dcb5e4d4674aa9007210da4bc6a4)
@@ -102,6 +102,8 @@
 
 	/* Policies for transfer buffers */
-	dma_policy_t transfer_buffer_policy;		/**< A hint for optimal performance. */
-	dma_policy_t required_transfer_buffer_policy;	/**< Enforced by the library. */
+	/** A hint for optimal performance. */
+	dma_policy_t transfer_buffer_policy;
+	/** Enforced by the library. */
+	dma_policy_t required_transfer_buffer_policy;
 
 	/**
@@ -114,5 +116,6 @@
 } endpoint_t;
 
-extern void endpoint_init(endpoint_t *, device_t *, const usb_endpoint_descriptors_t *);
+extern void endpoint_init(endpoint_t *, device_t *,
+    const usb_endpoint_descriptors_t *);
 
 extern void endpoint_add_ref(endpoint_t *);
Index: uspace/lib/usbhost/include/usb/host/hcd.h
===================================================================
--- uspace/lib/usbhost/include/usb/host/hcd.h	(revision e0a5d4cfd543daee5dd5a861793ddd18dcb32c0b)
+++ uspace/lib/usbhost/include/usb/host/hcd.h	(revision b2dca8de8634dcb5e4d4674aa9007210da4bc6a4)
@@ -78,5 +78,6 @@
 
 	/** Generate IRQ code to handle interrupts. */
-	int (*irq_code_gen)(irq_code_t *, hc_device_t *, const hw_res_list_parsed_t *, int *);
+	int (*irq_code_gen)(irq_code_t *, hc_device_t *,
+	    const hw_res_list_parsed_t *, int *);
 
 	/** Claim device from BIOS. */
@@ -100,5 +101,6 @@
 
 /* Drivers should call this before leaving hc_add */
-static inline void hc_device_setup(hc_device_t *hcd, bus_t *bus) {
+static inline void hc_device_setup(hc_device_t *hcd, bus_t *bus)
+{
 	hcd->bus = bus;
 }
Index: uspace/lib/usbhost/include/usb/host/usb2_bus.h
===================================================================
--- uspace/lib/usbhost/include/usb/host/usb2_bus.h	(revision e0a5d4cfd543daee5dd5a861793ddd18dcb32c0b)
+++ uspace/lib/usbhost/include/usb/host/usb2_bus.h	(revision b2dca8de8634dcb5e4d4674aa9007210da4bc6a4)
@@ -61,5 +61,6 @@
 } usb2_bus_helper_t;
 
-extern void usb2_bus_helper_init(usb2_bus_helper_t *, const bandwidth_accounting_t *);
+extern void usb2_bus_helper_init(usb2_bus_helper_t *,
+    const bandwidth_accounting_t *);
 
 extern int usb2_bus_device_enumerate(usb2_bus_helper_t *, device_t *);
Index: uspace/lib/usbhost/src/bandwidth.c
===================================================================
--- uspace/lib/usbhost/src/bandwidth.c	(revision e0a5d4cfd543daee5dd5a861793ddd18dcb32c0b)
+++ uspace/lib/usbhost/src/bandwidth.c	(revision b2dca8de8634dcb5e4d4674aa9007210da4bc6a4)
@@ -73,6 +73,5 @@
 	 * transaction, but I did not find text in USB spec to confirm this */
 	/* NOTE: All data packets will be considered to be max_packet_size */
-	switch (ep->device->speed)
-	{
+	switch (ep->device->speed) {
 	case USB_SPEED_LOW:
 		assert(type == USB_TRANSFER_INTERRUPT);
@@ -143,7 +142,9 @@
 	case USB_SPEED_LOW:
 		if (ep->direction == USB_DIRECTION_IN)
-			return 64060 + (2 * hub_ls_setup) + (677 * base_time) + host_delay;
+			return 64060 + (2 * hub_ls_setup) +
+				(677 * base_time) + host_delay;
 		else
-			return 64107 + (2 * hub_ls_setup) + (667 * base_time) + host_delay;
+			return 64107 + (2 * hub_ls_setup) +
+				(667 * base_time) + host_delay;
 
 	case USB_SPEED_FULL:
Index: uspace/lib/usbhost/src/hcd.c
===================================================================
--- uspace/lib/usbhost/src/hcd.c	(revision e0a5d4cfd543daee5dd5a861793ddd18dcb32c0b)
+++ uspace/lib/usbhost/src/hcd.c	(revision b2dca8de8634dcb5e4d4674aa9007210da4bc6a4)
@@ -155,8 +155,9 @@
  * @return Negative error code.
  */
-static errno_t hcd_ddf_setup_interrupts(hc_device_t *hcd, const hw_res_list_parsed_t *hw_res)
+static errno_t hcd_ddf_setup_interrupts(hc_device_t *hcd,
+    const hw_res_list_parsed_t *hw_res)
 {
 	assert(hcd);
-	irq_code_t irq_code = {0};
+	irq_code_t irq_code = { 0 };
 
 	if (!hc_driver->irq_code_gen)
@@ -174,5 +175,6 @@
 	/* Register handler to avoid interrupt lockup */
 	int irq_cap;
-	ret = register_interrupt_handler(hcd->ddf_dev, irq, irq_handler, &irq_code, &irq_cap);
+	ret = register_interrupt_handler(hcd->ddf_dev, irq, irq_handler,
+	    &irq_code, &irq_cap);
 	irq_code_clean(&irq_code);
 	if (ret != EOK) {
@@ -212,5 +214,6 @@
 
 	if (!hc_driver->hc_add) {
-		usb_log_error("Driver '%s' does not support adding devices.", hc_driver->name);
+		usb_log_error("Driver '%s' does not support adding devices.",
+		    hc_driver->name);
 		return ENOTSUP;
 	}
@@ -292,5 +295,5 @@
 
 	usb_log_info("Controlling new `%s' device `%s'.",
-	   hc_driver->name, ddf_dev_get_name(device));
+	    hc_driver->name, ddf_dev_get_name(device));
 	return EOK;
 
