Changeset 7eb32a8 in mainline
- Timestamp:
- 2011-09-13T13:37:51Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e779bd3c
- Parents:
- 3a8370c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/src/pipesio.c
r3a8370c r7eb32a8 73 73 switch (pipe->transfer_type) { 74 74 case USB_TRANSFER_INTERRUPT: 75 ipc_method = IPC_M_USBHC_INTERRUPT_IN;76 break;77 75 case USB_TRANSFER_BULK: 78 ipc_method = IPC_M_USBHC_ BULK_IN;76 ipc_method = IPC_M_USBHC_DATA_READ; 79 77 break; 80 78 default: … … 221 219 switch (pipe->transfer_type) { 222 220 case USB_TRANSFER_INTERRUPT: 223 ipc_method = IPC_M_USBHC_INTERRUPT_OUT;224 break;225 221 case USB_TRANSFER_BULK: 226 ipc_method = IPC_M_USBHC_ BULK_OUT;222 ipc_method = IPC_M_USBHC_DATA_WRITE; 227 223 break; 228 224 default:
Note:
See TracChangeset
for help on using the changeset viewer.