Index: uspace/lib/usbhid/src/hidparser.c
===================================================================
--- uspace/lib/usbhid/src/hidparser.c	(revision 92cf9a4101705d018e913d132b62e52d63888479)
+++ uspace/lib/usbhid/src/hidparser.c	(revision 2f1c88e88f3d33245f94ca59d2b772d4dd5d1f56)
@@ -381,6 +381,5 @@
 					tmp_value = tmp_value << (offset % 8);
 
-					mask = ~(((1 << (8 - (offset % 8))) - 1)
-					    << (offset % 8));
+					mask = ~(((1 << (8 - (offset % 8))) - 1) << (offset % 8));
 
 					buffer[i] = (buffer[i] & mask) |
@@ -471,5 +470,5 @@
 		return NULL;
 	}
-	memcpy(new_report_item,item, sizeof(usb_hid_report_item_t));
+	memcpy(new_report_item, item, sizeof(usb_hid_report_item_t));
 	link_initialize(&(new_report_item->link));
 
Index: uspace/lib/usbhid/src/hidpath.c
===================================================================
--- uspace/lib/usbhid/src/hidpath.c	(revision 92cf9a4101705d018e913d132b62e52d63888479)
+++ uspace/lib/usbhid/src/hidpath.c	(revision 2f1c88e88f3d33245f94ca59d2b772d4dd5d1f56)
@@ -150,5 +150,5 @@
 	if (!list_empty(&usage_path->items)) {
 		item = list_get_instance(list_last(&usage_path->items),
-		     usb_hid_report_usage_path_t, rpath_items_link);
+		    usb_hid_report_usage_path_t, rpath_items_link);
 
 		switch (tag) {
@@ -293,5 +293,5 @@
 
 		while ((report_link != &report_path->items.head) &&
-		      (path_link != &path->items.head)) {
+		    (path_link != &path->items.head)) {
 			report_item = list_get_instance(report_link,
 			    usb_hid_report_usage_path_t, rpath_items_link);
@@ -334,6 +334,5 @@
 	if (path == NULL) {
 		return NULL;
-	}
-	else {
+	} else {
 		path->depth = 0;
 		path->report_id = 0;
