Index: uspace/drv/uhci-hcd/transfer_list.c
===================================================================
--- uspace/drv/uhci-hcd/transfer_list.c	(revision c61338a49a5067e59574b03dcf1a2e8ad1034fce)
+++ uspace/drv/uhci-hcd/transfer_list.c	(revision 5bf82ee06a81fa610ea27a525b2caea718afa450)
@@ -91,5 +91,6 @@
  * The batch is added to the end of the list and queue.
  */
-void transfer_list_add_batch(transfer_list_t *instance, usb_transfer_batch_t *batch)
+void transfer_list_add_batch(
+    transfer_list_t *instance, usb_transfer_batch_t *batch)
 {
 	assert(instance);
@@ -146,5 +147,6 @@
 	while (current != &instance->batch_list) {
 		link_t *next = current->next;
-		usb_transfer_batch_t *batch = list_get_instance(current, usb_transfer_batch_t, link);
+		usb_transfer_batch_t *batch =
+		    list_get_instance(current, usb_transfer_batch_t, link);
 
 		if (batch_is_complete(batch)) {
@@ -160,5 +162,6 @@
 		link_t *item = done.next;
 		list_remove(item);
-		usb_transfer_batch_t *batch = list_get_instance(item, usb_transfer_batch_t, link);
+		usb_transfer_batch_t *batch =
+		    list_get_instance(item, usb_transfer_batch_t, link);
 		batch->next_step(batch);
 	}
@@ -174,5 +177,6 @@
 	while (!list_empty(&instance->batch_list)) {
 		link_t *current = instance->batch_list.next;
-		usb_transfer_batch_t *batch = list_get_instance(current, usb_transfer_batch_t, link);
+		usb_transfer_batch_t *batch =
+		    list_get_instance(current, usb_transfer_batch_t, link);
 		transfer_list_remove_batch(instance, batch);
 		usb_transfer_batch_finish(batch, EIO);
@@ -189,5 +193,6 @@
  * Does not lock the transfer list, caller is responsible for that.
  */
-void transfer_list_remove_batch(transfer_list_t *instance, usb_transfer_batch_t *batch)
+void transfer_list_remove_batch(
+    transfer_list_t *instance, usb_transfer_batch_t *batch)
 {
 	assert(instance);
@@ -210,5 +215,6 @@
 	} else {
 		usb_transfer_batch_t *prev =
-		    list_get_instance(batch->link.prev, usb_transfer_batch_t, link);
+		    list_get_instance(
+		        batch->link.prev, usb_transfer_batch_t, link);
 		assert((batch_qh(prev)->next & LINK_POINTER_ADDRESS_MASK)
 		    == addr_to_phys(batch_qh(batch)));
