Index: uspace/drv/bus/usb/xhci/debug.c
===================================================================
--- uspace/drv/bus/usb/xhci/debug.c	(revision 95f1b8fb04a16c3932f15cfbed3adcd434b47bbb)
+++ uspace/drv/bus/usb/xhci/debug.c	(revision 5ef3afdf4e5aa4f84ed956962e5facd43397a2aa)
@@ -322,19 +322,19 @@
 
 	switch (id) {
-		case XHCI_EC_SUPPORTED_PROTOCOL:
-			name.packed = host2uint32_t_le(XHCI_REG_RD(ec, XHCI_EC_SP_NAME));
-			ports_from = XHCI_REG_RD(ec, XHCI_EC_SP_CP_OFF);
-			ports_to = ports_from + XHCI_REG_RD(ec, XHCI_EC_SP_CP_COUNT) - 1;
-			unsigned psic = XHCI_REG_RD(ec, XHCI_EC_SP_PSIC);
-
-			usb_log_debug("\tProtocol %.4s%u.%u, ports %u-%u, "
-			    "%u protocol speeds", name.str,
-			    XHCI_REG_RD(ec, XHCI_EC_SP_MAJOR),
-			    XHCI_REG_RD(ec, XHCI_EC_SP_MINOR),
-			    ports_from, ports_to, psic);
-
-			for (unsigned i = 0; i < psic; i++)
-				xhci_dump_psi(xhci_extcap_psi(ec, i));
-			break;
+	case XHCI_EC_SUPPORTED_PROTOCOL:
+		name.packed = host2uint32_t_le(XHCI_REG_RD(ec, XHCI_EC_SP_NAME));
+		ports_from = XHCI_REG_RD(ec, XHCI_EC_SP_CP_OFF);
+		ports_to = ports_from + XHCI_REG_RD(ec, XHCI_EC_SP_CP_COUNT) - 1;
+		unsigned psic = XHCI_REG_RD(ec, XHCI_EC_SP_PSIC);
+
+		usb_log_debug("\tProtocol %.4s%u.%u, ports %u-%u, "
+		    "%u protocol speeds", name.str,
+		    XHCI_REG_RD(ec, XHCI_EC_SP_MAJOR),
+		    XHCI_REG_RD(ec, XHCI_EC_SP_MINOR),
+		    ports_from, ports_to, psic);
+
+		for (unsigned i = 0; i < psic; i++)
+			xhci_dump_psi(xhci_extcap_psi(ec, i));
+		break;
 	}
 }
Index: uspace/drv/bus/usb/xhci/isoch.c
===================================================================
--- uspace/drv/bus/usb/xhci/isoch.c	(revision 95f1b8fb04a16c3932f15cfbed3adcd434b47bbb)
+++ uspace/drv/bus/usb/xhci/isoch.c	(revision 5ef3afdf4e5aa4f84ed956962e5facd43397a2aa)
@@ -597,24 +597,24 @@
 
 	switch (completion_code) {
-		case XHCI_TRBC_RING_OVERRUN:
-		case XHCI_TRBC_RING_UNDERRUN:
-			/*
-			 * For OUT, there was nothing to process.
-			 * For IN, the buffer has overfilled.
-			 * In either case, reset the ring.
-			 */
-			usb_log_warning("Ring over/underrun.");
-			isoch_reset_no_timer(ep);
-			fibril_condvar_broadcast(&ep->isoch->avail);
-			fibril_mutex_unlock(&ep->isoch->guard);
-			goto out;
-		case XHCI_TRBC_SHORT_PACKET:
-		case XHCI_TRBC_SUCCESS:
-			err = EOK;
-			break;
-		default:
-			usb_log_warning("Transfer not successfull: %u", completion_code);
-			err = EIO;
-			break;
+	case XHCI_TRBC_RING_OVERRUN:
+	case XHCI_TRBC_RING_UNDERRUN:
+		/*
+		 * For OUT, there was nothing to process.
+		 * For IN, the buffer has overfilled.
+		 * In either case, reset the ring.
+		 */
+		usb_log_warning("Ring over/underrun.");
+		isoch_reset_no_timer(ep);
+		fibril_condvar_broadcast(&ep->isoch->avail);
+		fibril_mutex_unlock(&ep->isoch->guard);
+		goto out;
+	case XHCI_TRBC_SHORT_PACKET:
+	case XHCI_TRBC_SUCCESS:
+		err = EOK;
+		break;
+	default:
+		usb_log_warning("Transfer not successfull: %u", completion_code);
+		err = EIO;
+		break;
 	}
 
