Index: uspace/srv/hid/display/display.c
===================================================================
--- uspace/srv/hid/display/display.c	(revision b0a94854e61e0da77ab38167f0510ca1ae7cd70a)
+++ 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 b0a94854e61e0da77ab38167f0510ca1ae7cd70a)
+++ 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 b0a94854e61e0da77ab38167f0510ca1ae7cd70a)
+++ 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 b0a94854e61e0da77ab38167f0510ca1ae7cd70a)
+++ 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)
