Index: uspace/lib/display/src/disp_srv.c
===================================================================
--- uspace/lib/display/src/disp_srv.c	(revision 0a052b087f4f2a5bf35eefa42452c3e975cbc319)
+++ uspace/lib/display/src/disp_srv.c	(revision 6c2aba3fef6f293d95c6f25efe30068d7cf8a73f)
@@ -44,9 +44,6 @@
 #include <stddef.h>
 
-#include <stdio.h>
 static void display_callback_create_srv(display_srv_t *srv, ipc_call_t *call)
 {
-	printf("display_callback_create_srv\n");
-
 	async_sess_t *sess = async_callback_receive(EXCHANGE_SERIALIZE);
 	if (sess == NULL) {
@@ -67,6 +64,4 @@
 	errno_t rc;
 
-	printf("display_window_create_srv\n");
-
 	if (!async_data_write_receive(&call, &size)) {
 		async_answer_0(&call, EREFUSED);
@@ -101,6 +96,4 @@
 	sysarg_t wnd_id;
 	errno_t rc;
-
-	printf("display_window_destroy_srv\n");
 
 	wnd_id = ipc_get_arg1(icall);
@@ -123,6 +116,4 @@
 	errno_t rc;
 
-	printf("display_get_event_srv\n");
-
 	if (srv->ops->get_event == NULL) {
 		async_answer_0(icall, ENOTSUP);
@@ -162,5 +153,4 @@
 	/* Accept the connection */
 	async_accept_0(icall);
-	printf("display_conn\n");
 
 	while (true) {
@@ -176,5 +166,4 @@
 		}
 
-		printf("display_conn method=%u\n", (unsigned) method);
 		switch (method) {
 		case DISPLAY_CALLBACK_CREATE:
@@ -219,6 +208,4 @@
 	async_exch_t *exch;
 
-	printf("display_srv_ev_pending()\n");
-
 	exch = async_exchange_begin(srv->client_sess);
 	async_msg_0(exch, DISPLAY_EV_PENDING);
Index: uspace/lib/ipcgfx/src/server.c
===================================================================
--- uspace/lib/ipcgfx/src/server.c	(revision 0a052b087f4f2a5bf35eefa42452c3e975cbc319)
+++ uspace/lib/ipcgfx/src/server.c	(revision 6c2aba3fef6f293d95c6f25efe30068d7cf8a73f)
@@ -70,5 +70,4 @@
 	rc = gfx_set_color(srvgc->gc, color);
 	async_answer_0(call, rc);
-	printf("done with rgb_color_srv\n");
 }
 
Index: uspace/srv/hid/display/display.c
===================================================================
--- uspace/srv/hid/display/display.c	(revision 0a052b087f4f2a5bf35eefa42452c3e975cbc319)
+++ uspace/srv/hid/display/display.c	(revision 6c2aba3fef6f293d95c6f25efe30068d7cf8a73f)
@@ -313,5 +313,4 @@
 	// TODO Determine which seat the event belongs to
 	seat = ds_display_first_seat(display);
-	printf("ds_display_post_ptd_event: seat=%p\n", seat);
 	if (seat == NULL)
 		return EOK;
Index: uspace/srv/hid/display/input.c
===================================================================
--- uspace/srv/hid/display/input.c	(revision 0a052b087f4f2a5bf35eefa42452c3e975cbc319)
+++ uspace/srv/hid/display/input.c	(revision 6c2aba3fef6f293d95c6f25efe30068d7cf8a73f)
@@ -74,5 +74,4 @@
 	kbd_event_t event;
 
-	printf("ds_input_ev_key\n");
 	event.type = type;
 	event.key = key;
@@ -88,5 +87,4 @@
 	ptd_event_t event;
 
-	printf("ds_input_ev_move\n");
 	event.type = PTD_MOVE;
 	event.dmove.x = dx;
@@ -109,5 +107,4 @@
 	ptd_event_t event;
 
-	printf("ds_input_ev_abs_button\n");
 	event.type = bpress ? PTD_PRESS : PTD_RELEASE;
 	event.btn_num = bnum;
@@ -129,5 +126,4 @@
 	const char *svc = "hid/input";
 
-	printf("ds_input_open\n");
 	errno_t rc = loc_service_get_id(svc, &dsid, 0);
 	if (rc != EOK) {
@@ -153,5 +149,4 @@
 
 	input_activate(display->input);
-	printf("ds_input_open: DONE\n");
 	return EOK;
 }
Index: uspace/srv/hid/display/main.c
===================================================================
--- uspace/srv/hid/display/main.c	(revision 0a052b087f4f2a5bf35eefa42452c3e975cbc319)
+++ uspace/srv/hid/display/main.c	(revision 6c2aba3fef6f293d95c6f25efe30068d7cf8a73f)
@@ -66,5 +66,5 @@
 {
 	display_srv_t *srv = (display_srv_t *) arg;
-	printf("display_client_ev_pending\n");
+
 	display_srv_ev_pending(srv);
 }
Index: uspace/srv/hid/display/seat.c
===================================================================
--- uspace/srv/hid/display/seat.c	(revision 0a052b087f4f2a5bf35eefa42452c3e975cbc319)
+++ uspace/srv/hid/display/seat.c	(revision 6c2aba3fef6f293d95c6f25efe30068d7cf8a73f)
@@ -256,5 +256,4 @@
  * @return EOK on success or an error code
  */
-#include <stdio.h>
 errno_t ds_seat_post_ptd_event(ds_seat_t *seat, ptd_event_t *event)
 {
@@ -265,12 +264,9 @@
 	errno_t rc;
 
-	printf("ds_seat_post_ptd_event\n");
 	wnd = ds_display_window_by_pos(seat->display, &seat->pntpos);
 
 	/* Focus window on button press */
 	if (event->type == PTD_PRESS && event->btn_num == 1) {
-		printf("PTD_PRESS (button = %d)\n", event->btn_num);
 		if (wnd != NULL) {
-			printf("set focus\n");
 			ds_seat_set_focus(seat, wnd);
 		}
@@ -291,10 +287,7 @@
 
 	if (event->type == PTD_MOVE) {
-		printf("PTD_MOVE\n");
-
 		gfx_coord2_add(&seat->pntpos, &event->dmove, &npos);
 		gfx_coord2_clip(&npos, &disp->rect, &npos);
 
-		printf("clear pointer\n");
 		(void) ds_seat_clear_pointer(seat);
 		seat->pntpos = npos;
@@ -310,5 +303,4 @@
 			return rc;
 
-		printf("draw pointer\n");
 		(void) ds_seat_draw_pointer(seat);
 	}
@@ -329,9 +321,6 @@
 	errno_t rc;
 
-	printf("ds_seat_post_pos_event\n");
-
 	wnd = ds_display_window_by_pos(seat->display, &seat->pntpos);
 	if (wnd != NULL) {
-		printf("send event to window at pointer position\n");
 		rc = ds_window_post_pos_event(wnd, event);
 		if (rc != EOK)
@@ -340,6 +329,4 @@
 
 	if (seat->focus != wnd) {
-		printf("send event to focused window\n");
-
 		rc = ds_window_post_pos_event(seat->focus, event);
 		if (rc != EOK)
