Index: uspace/drv/usbkbd/main.c
===================================================================
--- uspace/drv/usbkbd/main.c	(revision c377bc50e90b94342b5cd1ccaee68c49b66564d6)
+++ uspace/drv/usbkbd/main.c	(revision 38c5dfa9a3012dac19c4c7f6ab15359a49f297c7)
@@ -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, 
