Changes in uspace/lib/drv/generic/remote_usbhc.c [6edd494:eac610e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_usbhc.c
r6edd494 reac610e 59 59 //static void remote_usbhc(device_t *, void *, ipc_callid_t, ipc_call_t *); 60 60 61 /** Remote USB host controllerinterface operations. */61 /** Remote USB interface operations. */ 62 62 static remote_iface_func_ptr_t remote_usbhc_iface_ops [] = { 63 63 remote_usbhc_get_address, … … 84 84 }; 85 85 86 /** Remote USB host controllerinterface structure.86 /** Remote USB interface structure. 87 87 */ 88 88 remote_iface_t remote_usbhc_iface = { … … 122 122 ipc_callid_t callid, ipc_call_t *call) 123 123 { 124 sysarg_t buffer_hash = DEV_IPC_GET_ARG1(*call);124 ipcarg_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, ( sysarg_t) address);199 ipc_answer_1(callid, EOK, (ipcarg_t) address); 200 200 } 201 201 } … … 254 254 255 255 // FIXME - answer according to outcome 256 ipc_answer_1(trans->caller, EOK, ( sysarg_t)trans);256 ipc_answer_1(trans->caller, EOK, (ipcarg_t)trans); 257 257 258 258 trans->size = actual_size;
Note:
See TracChangeset
for help on using the changeset viewer.