Changeset b8507a1 in mainline for uspace/srv/hw/bus/usb/hcd/virtual/conndev.c
- Timestamp:
- 2010-10-20T21:17:32Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- 6c741e1d
- Parents:
- 08af5a6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/bus/usb/hcd/virtual/conndev.c
r08af5a6 rb8507a1 40 40 #include "conn.h" 41 41 #include "hc.h" 42 #include "hub.h" 42 43 43 /** Handle data from device to function.44 /** Handle data from device to host. 44 45 */ 45 46 static void handle_data_from_device(ipc_callid_t iid, ipc_call_t icall, … … 50 51 .endpoint = IPC_GET_ARG2(icall) 51 52 }; 53 54 if (!hub_can_device_signal(dev)) { 55 ipc_answer_0(iid, EREFUSED); 56 return; 57 } 52 58 53 59 dprintf("data from device %d [%d.%d]", dev->id,
Note:
See TracChangeset
for help on using the changeset viewer.