Index: uspace/drv/usbkbd/main.c
===================================================================
--- uspace/drv/usbkbd/main.c	(revision 70a909239d54311abf05e8ec1466aa8c006e106c)
+++ uspace/drv/usbkbd/main.c	(revision 409dce589363528ff184be9d4e5135915c3ba4ed)
@@ -78,14 +78,10 @@
 }
 
+#if 0
 static void send_key(int key, int type, wchar_t c) {
 	async_msg_4(console_callback_phone, KBD_EVENT, type, key,
 	    KM_NUM_LOCK, c);
 }
-
-static void send_alnum(int key, wchar_t c) {
-	printf(NAME ": sending key '%lc' to console\n", (wint_t) c);
-	send_key(key, KEY_PRESS, c);
-	send_key(key, KEY_RELEASE, c);
-}
+#endif
 
 /*
@@ -231,13 +227,4 @@
 		sizeof(usb_hid_report_in_callbacks_t));
 	callbacks->keyboard = usbkbd_process_keycodes;
-
-	if (console_callback_phone != -1) {
-		static size_t counter = 0;
-		counter++;
-		if (counter > 3) {
-			counter = 0;
-			send_alnum(KC_A, L'a');
-		}
-	}
 
 	usb_hid_parse_report(kbd_dev->parser, buffer, actual_size, callbacks, 
