Index: uspace/drv/bus/adb/cuda_adb/main.c
===================================================================
--- uspace/drv/bus/adb/cuda_adb/main.c	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/adb/cuda_adb/main.c	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -103,5 +103,5 @@
 	errno_t rc;
 
-        ddf_msg(LVL_DEBUG, "cuda_dev_add(%p)", dev);
+	ddf_msg(LVL_DEBUG, "cuda_dev_add(%p)", dev);
 	cuda = ddf_dev_data_alloc(dev, sizeof(cuda_t));
 	if (cuda == NULL) {
@@ -124,30 +124,30 @@
 static errno_t cuda_dev_remove(ddf_dev_t *dev)
 {
-        cuda_t *cuda = (cuda_t *)ddf_dev_data_get(dev);
+	cuda_t *cuda = (cuda_t *)ddf_dev_data_get(dev);
 
-        ddf_msg(LVL_DEBUG, "cuda_dev_remove(%p)", dev);
+	ddf_msg(LVL_DEBUG, "cuda_dev_remove(%p)", dev);
 
-        return cuda_remove(cuda);
+	return cuda_remove(cuda);
 }
 
 static errno_t cuda_dev_gone(ddf_dev_t *dev)
 {
-        cuda_t *cuda = (cuda_t *)ddf_dev_data_get(dev);
+	cuda_t *cuda = (cuda_t *)ddf_dev_data_get(dev);
 
-        ddf_msg(LVL_DEBUG, "cuda_dev_gone(%p)", dev);
+	ddf_msg(LVL_DEBUG, "cuda_dev_gone(%p)", dev);
 
-        return cuda_gone(cuda);
+	return cuda_gone(cuda);
 }
 
 static errno_t cuda_fun_online(ddf_fun_t *fun)
 {
-        ddf_msg(LVL_DEBUG, "cuda_fun_online()");
-        return ddf_fun_online(fun);
+	ddf_msg(LVL_DEBUG, "cuda_fun_online()");
+	return ddf_fun_online(fun);
 }
 
 static errno_t cuda_fun_offline(ddf_fun_t *fun)
 {
-        ddf_msg(LVL_DEBUG, "cuda_fun_offline()");
-        return ddf_fun_offline(fun);
+	ddf_msg(LVL_DEBUG, "cuda_fun_offline()");
+	return ddf_fun_offline(fun);
 }
 
Index: uspace/drv/bus/isa/isa.c
===================================================================
--- uspace/drv/bus/isa/isa.c	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/isa/isa.c	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -227,5 +227,5 @@
 };
 
-static ddf_dev_ops_t isa_fun_ops= {
+static ddf_dev_ops_t isa_fun_ops = {
 	.interfaces[HW_RES_DEV_IFACE] = &isa_fun_hw_res_ops,
 	.interfaces[PIO_WINDOW_DEV_IFACE] = &isa_fun_pio_window_ops,
@@ -307,5 +307,5 @@
 	}
 
-	rc = vfs_read(fd, (aoff64_t []) {0}, buf, len, &nread);
+	rc = vfs_read(fd, (aoff64_t []) { 0 }, buf, len, &nread);
 	if (rc != EOK) {
 		ddf_msg(LVL_ERROR, "Unable to read file '%s'.", conf_path);
Index: uspace/drv/bus/usb/ehci/ehci_bus.c
===================================================================
--- uspace/drv/bus/usb/ehci/ehci_bus.c	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/ehci/ehci_bus.c	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -145,5 +145,5 @@
 	endpoint_set_offline_locked(ep);
 	list_remove(&ehci_ep->pending_link);
-	usb_transfer_batch_t * const batch = ep->active_batch;
+	usb_transfer_batch_t *const batch = ep->active_batch;
 	endpoint_deactivate_locked(ep);
 	fibril_mutex_unlock(&hc->guard);
Index: uspace/drv/bus/usb/ehci/endpoint_list.c
===================================================================
--- uspace/drv/bus/usb/ehci/endpoint_list.c	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/ehci/endpoint_list.c	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -66,5 +66,5 @@
 	fibril_mutex_initialize(&instance->guard);
 
-	usb_log_debug2("EPL(%p-%s): Transfer list setup with ED: %p(%"PRIxn").",
+	usb_log_debug2("EPL(%p-%s): Transfer list setup with ED: %p(%" PRIxn ").",
 	    instance, name, instance->list_head,
 	    addr_to_phys(instance->list_head));
@@ -133,5 +133,5 @@
 	    instance, instance->name, ep, first, first->qh);
 	if (last_qh == instance->list_head) {
-		usb_log_debug2("EPL(%p-%s): head EP(%p-%"PRIxn"): %x:%x.",
+		usb_log_debug2("EPL(%p-%s): head EP(%p-%" PRIxn "): %x:%x.",
 		    instance, instance->name, last_qh,
 		    addr_to_phys(instance->list_head),
Index: uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.h
===================================================================
--- uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.h	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.h	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -77,5 +77,5 @@
 	volatile uint32_t extended_bp[5];
 
-} __attribute__((packed,aligned(32))) td_t;
+} __attribute__((packed, aligned(32))) td_t;
 
 static_assert(sizeof(td_t) % 32 == 0);
Index: uspace/drv/bus/usb/ohci/endpoint_list.c
===================================================================
--- uspace/drv/bus/usb/ohci/endpoint_list.c	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/ohci/endpoint_list.c	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -128,5 +128,5 @@
 	    list_first(&instance->endpoint_list), ohci_endpoint_t, eplist_link);
 	usb_log_debug("HCD EP(%p) added to list %s, first is %p(%p).",
-		ep, instance->name, first, first->ed);
+	    ep, instance->name, first, first->ed);
 	if (last_ed == instance->list_head) {
 		usb_log_debug2("%s head ED(%p-0x%0" PRIx32 "): %x:%x:%x:%x.",
Index: uspace/drv/bus/usb/ohci/hw_struct/hcca.h
===================================================================
--- uspace/drv/bus/usb/ohci/hw_struct/hcca.h	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/ohci/hw_struct/hcca.h	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -69,5 +69,5 @@
  * @return Usable HCCA memory structure.
  */
-static inline hcca_t * hcca_get(void)
+static inline hcca_t *hcca_get(void)
 {
 	hcca_t *hcca = memalign(sizeof(hcca_t), sizeof(hcca_t));
Index: uspace/drv/bus/usb/ohci/ohci_bus.h
===================================================================
--- uspace/drv/bus/usb/ohci/ohci_bus.h	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/ohci/ohci_bus.h	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -84,5 +84,5 @@
  * @return Pointer to assigned hcd endpoint structure
  */
-static inline ohci_endpoint_t * ohci_endpoint_get(const endpoint_t *ep)
+static inline ohci_endpoint_t *ohci_endpoint_get(const endpoint_t *ep)
 {
 	assert(ep);
Index: uspace/drv/bus/usb/usbmid/usbmid.h
===================================================================
--- uspace/drv/bus/usb/usbmid/usbmid.h	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/usbmid/usbmid.h	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -69,5 +69,5 @@
 extern errno_t usbmid_interface_destroy(usbmid_interface_t *mid_iface);
 
-static inline usbmid_interface_t * usbmid_interface_from_link(link_t *item)
+static inline usbmid_interface_t *usbmid_interface_from_link(link_t *item)
 {
 	return list_get_instance(item, usbmid_interface_t, link);
Index: uspace/drv/bus/usb/vhc/conndev.c
===================================================================
--- uspace/drv/bus/usb/vhc/conndev.c	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/vhc/conndev.c	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -66,5 +66,5 @@
 	ipc_call_t data_request_call;
 	aid_t data_request = async_data_read(exch, plugged_device_name,
-	     PLUGGED_DEVICE_NAME_MAXLEN, &data_request_call);
+	    PLUGGED_DEVICE_NAME_MAXLEN, &data_request_call);
 
 	async_exchange_end(exch);
Index: uspace/drv/bus/usb/vhc/hub/virthub.h
===================================================================
--- uspace/drv/bus/usb/vhc/hub/virthub.h	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/vhc/hub/virthub.h	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -70,10 +70,10 @@
 	uint8_t max_current;
 	/** Whether device at given port is removable. */
-	uint8_t removable_device[BITS2BYTES(HUB_PORT_COUNT+1)];
+	uint8_t removable_device[BITS2BYTES(HUB_PORT_COUNT + 1)];
 	/** Port power control.
 	 * This is USB1.0 compatibility field, all bits must be 1.
 	 */
-	uint8_t port_power[BITS2BYTES(HUB_PORT_COUNT+1)];
-} __attribute__ ((packed)) hub_descriptor_t;
+	uint8_t port_power[BITS2BYTES(HUB_PORT_COUNT + 1)];
+} __attribute__((packed)) hub_descriptor_t;
 
 extern usbvirt_device_ops_t hub_ops;
Index: uspace/drv/bus/usb/vhc/main.c
===================================================================
--- uspace/drv/bus/usb/vhc/main.c	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/vhc/main.c	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -80,5 +80,5 @@
 	if (ret != EOK) {
 		usb_log_error("Failed to init HCD structures: %s.",
-		   str_error(ret));
+		    str_error(ret));
 		return ret;
 	}
@@ -111,5 +111,5 @@
 	if (ret != EOK) {
 		usb_log_error("Failed to init VHC root hub: %s",
-			str_error(ret));
+		    str_error(ret));
 		// TODO do something here...
 	}
@@ -127,5 +127,5 @@
 };
 
-int main(int argc, char * argv[])
+int main(int argc, char *argv[])
 {
 	log_init(NAME);
Index: uspace/drv/bus/usb/xhci/device.c
===================================================================
--- uspace/drv/bus/usb/xhci/device.c	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/xhci/device.c	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -159,6 +159,6 @@
 	if (dev->base.speed == USB_SPEED_HIGH) {
 		dev->tt_think_time = 8 +
-			8  * !!(hub_desc.characteristics & HUB_CHAR_TT_THINK_8) +
-			16 * !!(hub_desc.characteristics & HUB_CHAR_TT_THINK_16);
+		    8  * !!(hub_desc.characteristics & HUB_CHAR_TT_THINK_8) +
+		    16 * !!(hub_desc.characteristics & HUB_CHAR_TT_THINK_16);
 	}
 
@@ -222,5 +222,5 @@
 	if ((err = hc_get_device_desc(dev, &desc))) {
 		usb_log_error("Device(%d): failed to get device "
-		   "descriptor: %s", dev->address, str_error(err));
+		    "descriptor: %s", dev->address, str_error(err));
 		goto err_address;
 	}
Index: uspace/drv/bus/usb/xhci/hw_struct/common.h
===================================================================
--- uspace/drv/bus/usb/xhci/hw_struct/common.h	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/xhci/hw_struct/common.h	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -70,5 +70,5 @@
  */
 static inline void xhci_dword_set_bits(xhci_dword_t *storage, uint32_t value,
-	unsigned hi, unsigned lo)
+    unsigned hi, unsigned lo)
 {
 	const uint32_t mask = host2xhci(32, BIT_RANGE(uint32_t, hi, lo));
@@ -86,5 +86,5 @@
 
 static inline void xhci_qword_set_bits(xhci_qword_t *storage, uint64_t value,
-	unsigned hi, unsigned lo)
+    unsigned hi, unsigned lo)
 {
 	const uint64_t mask = host2xhci(64, BIT_RANGE(uint64_t, hi, lo));
@@ -94,5 +94,5 @@
 
 static inline int xhci_reg_wait(xhci_dword_t *reg, uint32_t mask,
-	uint32_t expected)
+    uint32_t expected)
 {
 	mask = host2xhci(32, mask);
Index: uspace/drv/bus/usb/xhci/scratchpad.c
===================================================================
--- uspace/drv/bus/usb/xhci/scratchpad.c	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/xhci/scratchpad.c	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -77,5 +77,5 @@
 	for (unsigned i = 0; i < num_bufs; ++i) {
 		array[i] = host2xhci(64, dma_buffer_phys(&hc->scratchpad_array,
-			    base + i * PAGE_SIZE));
+		    base + i * PAGE_SIZE));
 	}
 
Index: uspace/drv/bus/usb/xhci/transfers.h
===================================================================
--- uspace/drv/bus/usb/xhci/transfers.h	(revision e217228446aaaeda030cdfb8c3d6708255adacbb)
+++ uspace/drv/bus/usb/xhci/transfers.h	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -53,5 +53,5 @@
 } xhci_transfer_t;
 
-extern usb_transfer_batch_t* xhci_transfer_create(endpoint_t *);
+extern usb_transfer_batch_t *xhci_transfer_create(endpoint_t *);
 extern errno_t xhci_transfer_schedule(usb_transfer_batch_t *);
 
