Index: uspace/drv/uhci-hcd/pci.c
===================================================================
--- uspace/drv/uhci-hcd/pci.c	(revision 4ed80ce8b4e9e95cf33dd066d8ceb8c158889e93)
+++ uspace/drv/uhci-hcd/pci.c	(revision 4b4e163ac27009d99a483e3f3f07e2f12a240dc7)
@@ -82,28 +82,25 @@
 	for (i = 0; i < hw_resources.count; i++) {
 		hw_resource_t *res = &hw_resources.resources[i];
-		switch (res->type) {
-			case INTERRUPT:
-				irq = res->res.interrupt.irq;
-				irq_found = true;
-				usb_log_debug2("Found interrupt: %d.\n", irq);
-				break;
-			case IO_RANGE:
-				io_address = res->res.io_range.address;
-				io_size = res->res.io_range.size;
-				usb_log_debug2("Found io: %llx %zu.\n",
-				    res->res.io_range.address, res->res.io_range.size);
-				io_found = true;
-				break;
-			default:
-				break;
+		switch (res->type)
+		{
+		case INTERRUPT:
+			irq = res->res.interrupt.irq;
+			irq_found = true;
+			usb_log_debug2("Found interrupt: %d.\n", irq);
+			break;
+
+		case IO_RANGE:
+			io_address = res->res.io_range.address;
+			io_size = res->res.io_range.size;
+			usb_log_debug2("Found io: %llx %zu.\n",
+			    res->res.io_range.address, res->res.io_range.size);
+			io_found = true;
+
+		default:
+			break;
 		}
 	}
 
-	if (!io_found) {
-		rc = ENOENT;
-		goto leave;
-	}
-
-	if (!irq_found) {
+	if (!io_found || !irq_found) {
 		rc = ENOENT;
 		goto leave;
@@ -133,6 +130,6 @@
 {
 	assert(device);
-	int parent_phone = devman_parent_device_connect(device->handle,
-		IPC_FLAG_BLOCKING);
+	int parent_phone =
+	    devman_parent_device_connect(device->handle, IPC_FLAG_BLOCKING);
 	if (parent_phone < 0) {
 		return parent_phone;
@@ -144,9 +141,9 @@
 	sysarg_t value = 0x8f00;
 
-  int rc = async_req_3_0(parent_phone, DEV_IFACE_ID(PCI_DEV_IFACE),
+	int rc = async_req_3_0(parent_phone, DEV_IFACE_ID(PCI_DEV_IFACE),
 	    IPC_M_CONFIG_SPACE_WRITE_16, address, value);
 	async_hangup(parent_phone);
 
-  return rc;
+	return rc;
 }
 /*----------------------------------------------------------------------------*/
