Index: uspace/app/lsusb/main.c
===================================================================
--- uspace/app/lsusb/main.c	(revision e280857e4e01465defd530d79811dd788126293a)
+++ uspace/app/lsusb/main.c	(revision ef7052ec34f5b7c550a388062dfcbc2b4ede16f1)
@@ -54,10 +54,8 @@
 static void print_found_hc(service_id_t sid, const char *path)
 {
-	// printf(NAME ": host controller %zu is `%s'.\n", class_index, path);
 	printf("Bus %" PRIun ": %s\n", sid, path);
 }
 static void print_found_dev(usb_address_t addr, const char *path)
 {
-	// printf(NAME ":     device with address %d is `%s'.\n", addr, path);
 	printf("  Device %02d: %s\n", addr, path);
 }
@@ -100,8 +98,8 @@
 	int rc;
 
-	rc = loc_category_get_id(USB_HC_DDF_CLASS_NAME, &usbhc_cat, 0);
+	rc = loc_category_get_id(USB_HC_CATEGORY, &usbhc_cat, 0);
 	if (rc != EOK) {
 		printf(NAME ": Error resolving category '%s'",
-		    USB_HC_DDF_CLASS_NAME);
+		    USB_HC_CATEGORY);
 		return 1;
 	}
