Changeset 132ab5d1 in mainline for uspace/lib/drv/generic/remote_usbhc.c
- Timestamp:
- 2018-01-30T03:20:45Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_usbhc.c
r8bfb163 r132ab5d1 135 135 136 136 /* Wait for the answer. */ 137 sysarg_t opening_request_rc;137 int opening_request_rc; 138 138 async_wait_for(opening_request, &opening_request_rc); 139 139 … … 172 172 173 173 /* Wait for the answer. */ 174 sysarg_t opening_request_rc;174 int opening_request_rc; 175 175 async_wait_for(opening_request, &opening_request_rc); 176 176 … … 208 208 209 209 /* Wait for the answer. */ 210 sysarg_t data_request_rc;211 sysarg_t opening_request_rc;210 int data_request_rc; 211 int opening_request_rc; 212 212 async_wait_for(data_request, &data_request_rc); 213 213 async_wait_for(opening_request, &opening_request_rc); … … 256 256 257 257 /* Wait for the answer. */ 258 sysarg_t opening_request_rc;258 int opening_request_rc; 259 259 async_wait_for(opening_request, &opening_request_rc); 260 260
Note:
See TracChangeset
for help on using the changeset viewer.