Index: uspace/lib/usbhost/src/bandwidth.c
===================================================================
--- uspace/lib/usbhost/src/bandwidth.c	(revision 64532a970f3247a33dafe22f848eaf9f61ea730f)
+++ uspace/lib/usbhost/src/bandwidth.c	(revision c1f44ca9058d587a92a07d661a9e0197a5bf1f93)
@@ -62,6 +62,6 @@
 
 	/* We care about bandwidth only for interrupt and isochronous. */
-	if ((type != USB_TRANSFER_INTERRUPT)
-	    && (type != USB_TRANSFER_ISOCHRONOUS)) {
+	if ((type != USB_TRANSFER_INTERRUPT) &&
+	    (type != USB_TRANSFER_ISOCHRONOUS)) {
 		return 0;
 	}
@@ -127,6 +127,6 @@
 
 	/* We care about bandwidth only for interrupt and isochronous. */
-	if ((type != USB_TRANSFER_INTERRUPT)
-	    && (type != USB_TRANSFER_ISOCHRONOUS)) {
+	if ((type != USB_TRANSFER_INTERRUPT) &&
+	    (type != USB_TRANSFER_ISOCHRONOUS)) {
 		return 0;
 	}
@@ -143,8 +143,8 @@
 		if (ep->direction == USB_DIRECTION_IN)
 			return 64060 + (2 * hub_ls_setup) +
-				(677 * base_time) + host_delay;
+			    (677 * base_time) + host_delay;
 		else
 			return 64107 + (2 * hub_ls_setup) +
-				(667 * base_time) + host_delay;
+			    (667 * base_time) + host_delay;
 
 	case USB_SPEED_FULL:
Index: uspace/lib/usbhost/src/endpoint.c
===================================================================
--- uspace/lib/usbhost/src/endpoint.c	(revision 64532a970f3247a33dafe22f848eaf9f61ea730f)
+++ uspace/lib/usbhost/src/endpoint.c	(revision c1f44ca9058d587a92a07d661a9e0197a5bf1f93)
@@ -225,5 +225,5 @@
 	}
 
-	device_t * const device = ep->device;
+	device_t *const device = ep->device;
 	if (!device) {
 		usb_log_warning("Endpoint detached");
@@ -243,6 +243,6 @@
 	 */
 	if (size > ep->max_transfer_size &&
-	    (ep->transfer_type == USB_TRANSFER_INTERRUPT
-	     || ep->transfer_type == USB_TRANSFER_ISOCHRONOUS)) {
+	    (ep->transfer_type == USB_TRANSFER_INTERRUPT ||
+	    ep->transfer_type == USB_TRANSFER_ISOCHRONOUS)) {
 		if (req->dir == USB_DIRECTION_OUT)
 			return ENOSPC;
