Index: uspace/drv/uhci/root_hub/port.c
===================================================================
--- uspace/drv/uhci/root_hub/port.c	(revision f9dd44da8b6e01746d4445f7c5ad99c216e9d165)
+++ uspace/drv/uhci/root_hub/port.c	(revision 2e383854eddafb63699d4e88b0c6d753f37813d2)
@@ -32,5 +32,5 @@
 		uhci_print_info("Port(%d) status %#.4x:\n",
 		  port_instance->number, port_status);
-		print_port_status( port_status );
+		print_port_status(port_status);
 
 		if (port_status & STATUS_CONNECTED_CHANGED) {
@@ -51,5 +51,4 @@
 	assert(port->hc);
 
-
 	uhci_print_info("Adding new device on port %d.\n", port->number);
 
@@ -67,8 +66,8 @@
 
 	/* enable port */
-	uhci_port_set_enabled( port, true );
+	uhci_port_set_enabled(port, true);
 
 	/* assign address to device */
-	int ret = usb_drv_req_set_address( port->hc_phone, 0, usb_address );
+	int ret = usb_drv_req_set_address(port->hc_phone, 0, usb_address);
 
 
@@ -95,5 +94,4 @@
 	}
 
-
 	return EOK;
 }
@@ -101,5 +99,5 @@
 static int uhci_port_remove_device(uhci_port_t *port)
 {
-	uhci_print_error(	"Don't know how to remove device %#x.\n",
+	uhci_print_error("Don't know how to remove device %#x.\n",
 		port->attached_device);
 	uhci_port_set_enabled(port, false);
@@ -121,8 +119,8 @@
 		port_status &= ~STATUS_ENABLED;
 	}
-	port_status_write( port->address, port_status );
+	port_status_write(port->address, port_status);
 
-	uhci_print_info( "%s port %d.\n",
-	  enabled ? "Enabled" : "Disabled", port->number );
+	uhci_print_info("%s port %d.\n",
+	  enabled ? "Enabled" : "Disabled", port->number);
 	return EOK;
 }
