Index: uspace/app/usbinfo/dump.c
===================================================================
--- uspace/app/usbinfo/dump.c	(revision 2c5cefa897b181e123f9677daf6fc62cb602cd82)
+++ uspace/app/usbinfo/dump.c	(revision 7ed5b5763472e1fff14e208a3facac2a1b05b956)
@@ -69,4 +69,17 @@
 }
 
+void dump_match_ids(match_id_list_t *matches)
+{
+	printf("Match ids:\n");
+	link_t *link;
+	for (link = matches->ids.next;
+	    link != &matches->ids;
+	    link = link->next) {
+		match_id_t *match = list_get_instance(link, match_id_t, link);
+
+		printf(INDENT "%d %s\n", match->score, match->id);
+	}
+}
+
 void dump_standard_device_descriptor(usb_standard_device_descriptor_t *d)
 {
