Changeset fe9d542 in mainline
- Timestamp:
- 2013-01-27T17:30:02Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8582076
- Parents:
- 5debe97
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/usbinfo/list.c
r5debe97 rfe9d542 48 48 #include "usbinfo.h" 49 49 50 #define MAX_USB_ADDRESS USB11_ADDRESS_MAX51 50 #define MAX_PATH_LENGTH 1024 52 51 … … 64 63 { 65 64 for (size_t i = 0; i < count; ++i) { 65 /* Skip hc ctl function */ 66 66 if (fhs[i] == bus_handle) 67 67 continue; … … 130 130 continue; 131 131 } 132 132 133 char path[MAX_PATH_LENGTH]; 133 134 rc = devman_fun_get_path(hc_handle, path, MAX_PATH_LENGTH); … … 139 140 print_found_hc(svcs[i], path); 140 141 142 /* Construct device's path. 143 * That's "hc function path" - ( '/' + "hc function name" ) */ 141 144 // TODO replace this with something sane 142 145 char name[10];
Note:
See TracChangeset
for help on using the changeset viewer.