Index: uspace/lib/c/generic/adt/hash_table.c
===================================================================
--- uspace/lib/c/generic/adt/hash_table.c	(revision 2f72c67a5acf0684d0c4da78b41afa211a71c6ad)
+++ uspace/lib/c/generic/adt/hash_table.c	(revision 818fffee39e7af9d4be402c0bbf35d4a06b82d6c)
@@ -152,6 +152,4 @@
 	
 	if (keys == h->max_keys) {
-		link_t *cur;
-		
 		/*
 		 * All keys are known, hash_table_find() can be used to find the
@@ -159,5 +157,5 @@
 		 */
 		
-		cur = hash_table_find(h, key);
+		link_t *cur = hash_table_find(h, key);
 		if (cur) {
 			list_remove(cur);
@@ -174,7 +172,6 @@
 	hash_index_t chain;
 	for (chain = 0; chain < h->entries; chain++) {
-		link_t *cur;
-		
-		for (cur = h->entry[chain].head.next; cur != &h->entry[chain].head;
+		for (link_t *cur = h->entry[chain].head.next;
+		    cur != &h->entry[chain].head;
 		    cur = cur->next) {
 			if (h->op->compare(key, keys, cur)) {
Index: uspace/lib/c/include/ipc/loc.h
===================================================================
--- uspace/lib/c/include/ipc/loc.h	(revision 2f72c67a5acf0684d0c4da78b41afa211a71c6ad)
+++ uspace/lib/c/include/ipc/loc.h	(revision 818fffee39e7af9d4be402c0bbf35d4a06b82d6c)
@@ -97,2 +97,5 @@
 
 #endif
+
+/** @}
+ */
Index: uspace/lib/drv/generic/dev_iface.c
===================================================================
--- uspace/lib/drv/generic/dev_iface.c	(revision 2f72c67a5acf0684d0c4da78b41afa211a71c6ad)
+++ uspace/lib/drv/generic/dev_iface.c	(revision 818fffee39e7af9d4be402c0bbf35d4a06b82d6c)
@@ -46,6 +46,4 @@
 #include "remote_pci.h"
 
-#include <stdio.h>
-
 static iface_dipatch_table_t remote_ifaces = {
 	.ifaces = {
@@ -68,8 +66,7 @@
 get_remote_method(remote_iface_t *rem_iface, sysarg_t iface_method_idx)
 {
-	if (iface_method_idx >= rem_iface->method_count) {
+	if (iface_method_idx >= rem_iface->method_count)
 		return NULL;
-	}
-
+	
 	return rem_iface->methods[iface_method_idx];
 }
Index: uspace/lib/drv/generic/driver.c
===================================================================
--- uspace/lib/drv/generic/driver.c	(revision 2f72c67a5acf0684d0c4da78b41afa211a71c6ad)
+++ uspace/lib/drv/generic/driver.c	(revision 818fffee39e7af9d4be402c0bbf35d4a06b82d6c)
@@ -271,5 +271,5 @@
 	
 	devman_handle_t dev_handle = IPC_GET_ARG1(*icall);
-    	devman_handle_t parent_fun_handle = IPC_GET_ARG2(*icall);
+	devman_handle_t parent_fun_handle = IPC_GET_ARG2(*icall);
 	
 	ddf_dev_t *dev = create_device();
