Index: uspace/drv/usbhid/kbd/kbddev.c
===================================================================
--- uspace/drv/usbhid/kbd/kbddev.c	(revision 61257f414d6dfc36c096abb542ed95e187bfb391)
+++ uspace/drv/usbhid/kbd/kbddev.c	(revision 7f2e33a6374147a0d20faaeb1ea1722e44f86a96)
@@ -636,5 +636,5 @@
 	usb_hid_report_path_t *path = usb_hid_report_path();
 	usb_hid_report_path_append_item(path, USB_HIDUT_PAGE_KEYBOARD, 0);
-	usb_hid_report_path_set_report_id(path, 1);
+	usb_hid_report_path_set_report_id(path, 0);
 	
 	int rc = usb_hid_parse_report(hid_dev->parser, buffer,
@@ -733,5 +733,5 @@
 	usb_hid_report_path_append_item(path, USB_HIDUT_PAGE_KEYBOARD, 0);
 	
-	usb_hid_report_path_set_report_id(path, 1);
+	usb_hid_report_path_set_report_id(path, 0);
 	
 	kbd_dev->key_count = usb_hid_report_input_length(
Index: uspace/drv/usbhid/usbhid.c
===================================================================
--- uspace/drv/usbhid/usbhid.c	(revision 61257f414d6dfc36c096abb542ed95e187bfb391)
+++ uspace/drv/usbhid/usbhid.c	(revision 7f2e33a6374147a0d20faaeb1ea1722e44f86a96)
@@ -40,4 +40,5 @@
 #include <usb/classes/hidparser.h>
 #include <usb/classes/hidreport.h>
+#include <usb/classes/hidreq.h>
 #include <errno.h>
 
@@ -117,4 +118,5 @@
      size_t buffer_size, void *arg)
 {
+	usb_log_debug("Dummy polling callback.\n");
 	return false;
 }
@@ -177,4 +179,5 @@
 	rc = usb_hid_process_report_descriptor(hid_dev->usb_dev, 
 	    hid_dev->parser);
+	
 	if (rc != EOK) {
 		usb_log_warning("Could not process report descriptor.\n");
@@ -240,4 +243,6 @@
 		break;
 	default:
+//		usbhid_req_set_idle(&hid_dev->usb_dev->ctrl_pipe, 
+//		    hid_dev->usb_dev->interface_no, 0);
 		break;
 	}
Index: uspace/drv/usbhid/usbhid.ma
===================================================================
--- uspace/drv/usbhid/usbhid.ma	(revision 61257f414d6dfc36c096abb542ed95e187bfb391)
+++ uspace/drv/usbhid/usbhid.ma	(revision 7f2e33a6374147a0d20faaeb1ea1722e44f86a96)
@@ -1,2 +1,2 @@
-1000 usb&interface&class=HID&subclass=0x01&protocol=0x02
-1000 usb&interface&class=HID
+100 usb&interface&class=HID&subclass=0x01&protocol=0x02
+100 usb&interface&class=HID
