Changeset 7beb220 in mainline for uspace/app
- Timestamp:
- 2011-08-19T12:06:03Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2f2f1186
- Parents:
- d767cb1
- Location:
- uspace/app
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/lsusb/main.c
rd767cb1 r7beb220 81 81 } 82 82 char path[MAX_PATH_LENGTH]; 83 rc = devman_ get_device_path(dev_handle, path, MAX_PATH_LENGTH);83 rc = devman_fun_get_path(dev_handle, path, MAX_PATH_LENGTH); 84 84 if (rc != EOK) { 85 85 continue; … … 120 120 } 121 121 char path[MAX_PATH_LENGTH]; 122 rc = devman_ get_device_path(hc_handle, path, MAX_PATH_LENGTH);122 rc = devman_fun_get_path(hc_handle, path, MAX_PATH_LENGTH); 123 123 if (rc != EOK) { 124 124 printf(NAME ": Error resolving path of HC with SID %" -
uspace/app/mkbd/main.c
rd767cb1 r7beb220 240 240 241 241 char path[MAX_PATH_LENGTH]; 242 rc = devman_ get_device_path(dev_handle, path, MAX_PATH_LENGTH);242 rc = devman_fun_get_path(dev_handle, path, MAX_PATH_LENGTH); 243 243 if (rc != EOK) { 244 244 return ENOMEM; -
uspace/app/tester/hw/serial/serial1.c
rd767cb1 r7beb220 72 72 73 73 devman_handle_t handle; 74 int res = devman_ device_get_handle("/hw/pci0/00:01.0/com1/a", &handle,74 int res = devman_fun_get_handle("/hw/pci0/00:01.0/com1/a", &handle, 75 75 IPC_FLAG_BLOCKING); 76 76 if (res != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.