Changeset 01086cfe in mainline
- Timestamp:
- 2011-12-14T19:00:14Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d6d15ec
- Parents:
- 94bfc84
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/src/pipes.c
r94bfc84 r01086cfe 118 118 } 119 119 120 /* Isochronous transfer are not supported (yet) */121 if (pipe->transfer_type != USB_TRANSFER_INTERRUPT &&122 pipe->transfer_type != USB_TRANSFER_BULK &&123 pipe->transfer_type != USB_TRANSFER_CONTROL)124 return ENOTSUP;125 126 120 uint64_t setup_packet; 127 121 memcpy(&setup_packet, setup_buffer, 8); … … 176 170 } 177 171 178 /* Isochronous transfer are not supported (yet) */179 if (pipe->transfer_type != USB_TRANSFER_INTERRUPT &&180 pipe->transfer_type != USB_TRANSFER_BULK &&181 pipe->transfer_type != USB_TRANSFER_CONTROL)182 return ENOTSUP;183 184 172 uint64_t setup_packet; 185 173 memcpy(&setup_packet, setup_buffer, 8); … … 226 214 /* Isochronous transfer are not supported (yet) */ 227 215 if (pipe->transfer_type != USB_TRANSFER_INTERRUPT && 228 pipe->transfer_type != USB_TRANSFER_BULK && 229 pipe->transfer_type != USB_TRANSFER_CONTROL) 216 pipe->transfer_type != USB_TRANSFER_BULK) 230 217 return ENOTSUP; 231 218 … … 266 253 /* Isochronous transfer are not supported (yet) */ 267 254 if (pipe->transfer_type != USB_TRANSFER_INTERRUPT && 268 pipe->transfer_type != USB_TRANSFER_BULK && 269 pipe->transfer_type != USB_TRANSFER_CONTROL) 255 pipe->transfer_type != USB_TRANSFER_BULK) 270 256 return ENOTSUP; 271 257
Note:
See TracChangeset
for help on using the changeset viewer.