Index: uspace/app/mkbd/main.c
===================================================================
--- uspace/app/mkbd/main.c	(revision 8d3f198682cdb8c1557ad7830bae04f88ea18073)
+++ uspace/app/mkbd/main.c	(revision 6a544f557a8aecac7d29ec627a23f4ef7826d1b3)
@@ -45,6 +45,6 @@
 #include <devmap.h>
 #include <usb/dev/hub.h>
-#include <usb/host.h>
-#include <usb/driver.h>
+//#include <usb/host.h>
+//#include <usb/driver.h>
 #include <usb/hid/iface.h>
 #include <usb/dev/pipes.h>
@@ -140,6 +140,17 @@
 	assert(report != NULL);
 	
+	printf("Calling usb_hid_parse_report() with size %zu and "
+	    "buffer: \n", size);
+	for (size_t i = 0; i < size; ++i) {
+		printf(" %X ", buffer[i]);
+	}
+	printf("\n");
+	
 	uint8_t report_id;
-	usb_hid_parse_report(report, buffer, size, &report_id);
+	int rc = usb_hid_parse_report(report, buffer, size, &report_id);
+	if (rc != EOK) {
+		printf("Error parsing report: %s\n", str_error(rc));
+		return;
+	}
 	
 	usb_hid_report_path_t *path = usb_hid_report_path();
@@ -196,5 +207,5 @@
 	
 	//char *devpath = argv[1];
-	const char *devpath = "/hw/pci0/00:06.0/ohci-rh/usb00_a2/HID0/hid";
+	const char *devpath = "/hw/pci0/00:06.0/ohci-rh/usb00_a2/HID1/hid";
 	
 	int rc;
@@ -269,5 +280,6 @@
 		}
 		
-		printf("Got buffer: %p, size: %zu\n", event, actual_size);
+		printf("Got buffer: %p, size: %zu, max size: %zu\n", event, 
+		    actual_size, size);
 		
 		print_key(event, size, report);
