Index: uspace/app/usbinfo/list.c
===================================================================
--- uspace/app/usbinfo/list.c	(revision 5debe9776d5eb2c499edb6b196ac772f9701c9ed)
+++ uspace/app/usbinfo/list.c	(revision 711f5fb85c19fc571e8a69a1cb8d075c79f438de)
@@ -48,5 +48,4 @@
 #include "usbinfo.h"
 
-#define MAX_USB_ADDRESS USB11_ADDRESS_MAX
 #define MAX_PATH_LENGTH 1024
 
@@ -64,4 +63,5 @@
 {
 	for (size_t i = 0; i < count; ++i) {
+		/* Skip hc ctl function */
 		if (fhs[i] == bus_handle)
 			continue;
@@ -130,4 +130,5 @@
 			continue;
 		}
+
 		char path[MAX_PATH_LENGTH];
 		rc = devman_fun_get_path(hc_handle, path, MAX_PATH_LENGTH);
@@ -139,4 +140,6 @@
 		print_found_hc(svcs[i], path);
 
+		/* Construct device's path.
+		 * That's "hc function path" - ( '/' + "hc function name" ) */
 		// TODO replace this with something sane
 		char name[10];
