Changeset 1669a73 in mainline
- Timestamp:
- 2011-02-04T13:05:23Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dd455b1
- Parents:
- 1f5c1e61
- Location:
- uspace/drv/uhci-hcd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/Makefile
r1f5c1e61 r1669a73 40 40 uhci.c \ 41 41 uhci_struct/transfer_descriptor.c \ 42 pci.c 42 pci.c 43 43 44 44 include $(USPACE_PREFIX)/Makefile.common -
uspace/drv/uhci-hcd/iface.c
r1f5c1e61 r1669a73 35 35 #include <remote_usbhc.h> 36 36 37 #include <usb/debug.h> 38 37 39 #include <errno.h> 38 40 -
uspace/drv/uhci-hcd/uhci.c
r1f5c1e61 r1669a73 148 148 usbhc_iface_transfer_out_callback_t callback_out, 149 149 usbhc_iface_transfer_in_callback_t callback_in, 150 void *arg 150 void *arg) 151 151 { 152 152 // TODO: Add support for isochronous transfers 153 if (transfer_type == USB_TRANSFER_ISOCHRONOUS) 153 if (transfer_type == USB_TRANSFER_ISOCHRONOUS) { 154 usb_log_warning("ISO transfer not supported.\n"); 154 155 return ENOTSUP; 155 156 if (size >= 1024) 156 } 157 158 if (size >= 1024) { 159 usb_log_warning("Transfer too big.\n"); 157 160 return ENOTSUP; 161 } 158 162 159 163 transfer_descriptor_t *td = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.