Changeset 8f68913f in mainline for uspace/lib/drv
- Timestamp:
- 2012-12-20T11:48:32Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d9b2c73
- Parents:
- 21be46a
- Location:
- uspace/lib/drv
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_usbhc.c
r21be46a r8f68913f 463 463 } 464 464 465 static void callback_out(ddf_fun_t *fun, 466 int outcome, void *arg) 465 static void callback_out(int outcome, void *arg) 467 466 { 468 467 async_transaction_t *trans = arg; … … 473 472 } 474 473 475 static void callback_in(ddf_fun_t *fun, 476 int outcome, size_t actual_size, void *arg) 474 static void callback_in(int outcome, size_t actual_size, void *arg) 477 475 { 478 476 async_transaction_t *trans = (async_transaction_t *)arg; -
uspace/lib/drv/include/usbhc_iface.h
r21be46a r8f68913f 58 58 59 59 /** Callback for outgoing transfer. */ 60 typedef void (*usbhc_iface_transfer_out_callback_t)( ddf_fun_t *,int, void *);60 typedef void (*usbhc_iface_transfer_out_callback_t)(int, void *); 61 61 62 62 /** Callback for incoming transfer. */ 63 typedef void (*usbhc_iface_transfer_in_callback_t)(ddf_fun_t *, 64 int, size_t, void *); 63 typedef void (*usbhc_iface_transfer_in_callback_t)(int, size_t, void *); 65 64 66 65 /** USB host controller communication interface. */
Note:
See TracChangeset
for help on using the changeset viewer.