Changeset a9b6bec in mainline for uspace/lib/drv/generic/remote_usbhc.c
- Timestamp:
- 2010-12-14T20:19:41Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 11658b64
- Parents:
- 37f7cfe (diff), 228e490 (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
r37f7cfe ra9b6bec 122 122 ipc_callid_t callid, ipc_call_t *call) 123 123 { 124 ipcarg_t buffer_hash = DEV_IPC_GET_ARG1(*call);124 sysarg_t buffer_hash = DEV_IPC_GET_ARG1(*call); 125 125 async_transaction_t * trans = (async_transaction_t *)buffer_hash; 126 126 if (trans == NULL) { … … 197 197 ipc_answer_0(callid, rc); 198 198 } else { 199 ipc_answer_1(callid, EOK, ( ipcarg_t) address);199 ipc_answer_1(callid, EOK, (sysarg_t) address); 200 200 } 201 201 } … … 254 254 255 255 // FIXME - answer according to outcome 256 ipc_answer_1(trans->caller, EOK, ( ipcarg_t)trans);256 ipc_answer_1(trans->caller, EOK, (sysarg_t)trans); 257 257 258 258 trans->size = actual_size;
Note:
See TracChangeset
for help on using the changeset viewer.