Index: uspace/lib/libdrv/generic/driver.c
===================================================================
--- uspace/lib/libdrv/generic/driver.c	(revision 89ce401a6041808200871d79a9a8dc5367992722)
+++ uspace/lib/libdrv/generic/driver.c	(revision 2480e1950e6008ddc8de893c9387eea1d9ce607e)
@@ -103,6 +103,4 @@
 static void driver_add_device(ipc_callid_t iid, ipc_call_t *icall)
 {
-	printf("%s: driver_add_device\n", driver->name);
-
 	// TODO device state - the driver may detect the device is not actually present 
 	// (old non PnP devices) or is not working properly. 
@@ -128,6 +126,4 @@
 static void driver_connection_devman(ipc_callid_t iid, ipc_call_t *icall)
 {
-	printf("%s: driver_connection_devman \n", driver->name);
-
 	/* Accept connection */
 	ipc_answer_0(iid, EOK);
@@ -174,5 +170,4 @@
 	// TODO open the device (introduce some callbacks for opening and closing devices registered by the driver)
 	
-	printf("%s: driver_connection_gen: accepting connection.\n", driver->name);
 	ipc_answer_0(iid, EOK);	
 
@@ -180,6 +175,4 @@
 		ipc_callid_t callid;
 		ipc_call_t call;
-
-		printf("%s: driver_connection_gen: waiting for call.\n", driver->name);
 		callid = async_get_call(&call);
 		ipcarg_t method = IPC_GET_METHOD(call);
@@ -236,5 +229,4 @@
 static void driver_connection_driver(ipc_callid_t iid, ipc_call_t *icall)
 {
-	printf("%s: driver_connection_driver\n", driver->name);
 	driver_connection_gen(iid, icall, true);
 }
@@ -242,5 +234,4 @@
 static void driver_connection_client(ipc_callid_t iid, ipc_call_t *icall)
 {
-	printf("%s: driver_connection_client\n", driver->name);
 	driver_connection_gen(iid, icall, false);
 }
@@ -275,5 +266,5 @@
 bool child_device_register(device_t *child, device_t *parent)
 {
-	printf("%s: child_device_register\n", driver->name);
+	// printf("%s: child_device_register\n", driver->name);
 
 	assert(NULL != child->name);
