Index: uspace/lib/drv/generic/dev_iface.c
===================================================================
--- uspace/lib/drv/generic/dev_iface.c	(revision 79ae36ddc409577eb0da3750b3a7280e034566a2)
+++ uspace/lib/drv/generic/dev_iface.c	(revision 4bb7ffef3e23c7aa82199ac6ba9838b10a2ceea7)
@@ -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];
 }
