Index: uspace/drv/hid/usbhid/usbhid.c
===================================================================
--- uspace/drv/hid/usbhid/usbhid.c	(revision 76d0981d8dda2b7d698201a93e0c555e99215ba5)
+++ uspace/drv/hid/usbhid/usbhid.c	(revision 36470ce8f1d0f0e1ac58746fc8bd8bf3bed80974)
@@ -123,6 +123,6 @@
 	    &usb_device_descriptors(hid_dev->usb_dev)->device;
 
-	return (d->vendor_id == mapping->vendor_id)
-	    && (d->product_id == mapping->product_id);
+	return (d->vendor_id == mapping->vendor_id) &&
+	    (d->product_id == mapping->product_id);
 }
 
@@ -139,6 +139,6 @@
 	}
 
-	for (int i = 0; mapping->usage_path[i].usage != 0
-	    || mapping->usage_path[i].usage_page != 0; ++i) {
+	for (int i = 0; mapping->usage_path[i].usage != 0 ||
+	    mapping->usage_path[i].usage_page != 0; ++i) {
 		if (usb_hid_report_path_append_item(usage_path,
 		    mapping->usage_path[i].usage_page,
@@ -159,11 +159,11 @@
 		if (report_id != 0) {
 			usb_hid_report_path_set_report_id(usage_path,
-				report_id);
+			    report_id);
 		}
 
 		const usb_hid_report_field_t *field =
 		    usb_hid_report_get_sibling(
-		        &hid_dev->report, NULL, usage_path, mapping->compare,
-		        USB_HID_REPORT_TYPE_INPUT);
+		    &hid_dev->report, NULL, usage_path, mapping->compare,
+		    USB_HID_REPORT_TYPE_INPUT);
 
 		usb_log_debug("Field: %p", field);
@@ -275,9 +275,9 @@
 	static const struct {
 		const usb_endpoint_description_t *desc;
-		const char* description;
+		const char *description;
 	} endpoints[] = {
-		{&usb_hid_kbd_poll_endpoint_description, "Keyboard endpoint"},
-		{&usb_hid_mouse_poll_endpoint_description, "Mouse endpoint"},
-		{&usb_hid_generic_poll_endpoint_description, "Generic HID endpoint"},
+		{ &usb_hid_kbd_poll_endpoint_description, "Keyboard endpoint" },
+		{ &usb_hid_mouse_poll_endpoint_description, "Mouse endpoint" },
+		{ &usb_hid_generic_poll_endpoint_description, "Generic HID endpoint" },
 	};
 
@@ -305,5 +305,5 @@
 		const size_t size =
 		    usb_hid_report_byte_size(&hid_dev->report, report_id,
-		        USB_HID_REPORT_TYPE_INPUT);
+		    USB_HID_REPORT_TYPE_INPUT);
 		usb_log_debug("Report ID: %u, size: %zu", report_id, size);
 		max_size = (size > max_size) ? size : max_size;
@@ -492,5 +492,5 @@
 	for (unsigned i = 0; i < hid_dev->subdriver_count; ++i) {
 		if (hid_dev->subdrivers[i].init != NULL) {
-			usb_log_debug("Initializing subdriver %d.",i);
+			usb_log_debug("Initializing subdriver %d.", i);
 			const errno_t pret = hid_dev->subdrivers[i].init(hid_dev,
 			    &hid_dev->subdrivers[i].data);
