Changeset f58ef61 in mainline
- Timestamp:
- 2011-09-15T14:47:42Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8b54fe6
- Parents:
- bbce2c2
- Location:
- uspace
- Files:
-
- 6 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/ohci_batch.h
rbbce2c2 rf58ef61 38 38 #include <usbhc_iface.h> 39 39 #include <usb/usb.h> 40 #include <usb/host/ batch.h>40 #include <usb/host/usb_transfer_batch.h> 41 41 42 42 #include "hw_struct/transfer_descriptor.h" -
uspace/drv/bus/usb/ohci/root_hub.h
rbbce2c2 rf58ef61 37 37 #include <usb/usb.h> 38 38 #include <usb/dev/driver.h> 39 #include <usb/host/ batch.h>39 #include <usb/host/usb_transfer_batch.h> 40 40 41 41 #include "ohci_regs.h" … … 66 66 /** size of hub descriptor */ 67 67 size_t hub_descriptor_size; 68 69 68 } rh_t; 70 69 -
uspace/drv/bus/usb/uhci/hc.h
rbbce2c2 rf58ef61 39 39 #include <ddi.h> 40 40 41 #include <usb/host/batch.h>42 41 #include <usb/host/hcd.h> 43 42 -
uspace/drv/bus/usb/uhci/uhci_batch.h
rbbce2c2 rf58ef61 35 35 #define DRV_UHCI_BATCH_H 36 36 37 #include <usb/host/ batch.h>37 #include <usb/host/usb_transfer_batch.h> 38 38 #include <adt/list.h> 39 39 -
uspace/lib/usbhost/Makefile
rbbce2c2 rf58ef61 35 35 36 36 SOURCES = \ 37 src/batch.c \38 37 src/device_keeper.c \ 39 38 src/endpoint.c \ 40 39 src/iface.c \ 41 src/usb_endpoint_manager.c 40 src/usb_endpoint_manager.c \ 41 src/usb_transfer_batch.c 42 42 43 43 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/usbhost/include/usb/host/hcd.h
rbbce2c2 rf58ef61 39 39 #include <usb/host/device_keeper.h> 40 40 #include <usb/host/usb_endpoint_manager.h> 41 #include <usb/host/ batch.h>41 #include <usb/host/usb_transfer_batch.h> 42 42 #include <usbhc_iface.h> 43 43 -
uspace/lib/usbhost/include/usb/host/usb_transfer_batch.h
rbbce2c2 rf58ef61 32 32 * USB transfer transaction structures. 33 33 */ 34 #ifndef LIBUSBHOST_HOST_ BATCH_H35 #define LIBUSBHOST_HOST_ BATCH_H34 #ifndef LIBUSBHOST_HOST_USB_TRANSFER_BATCH_H 35 #define LIBUSBHOST_HOST_USB_TRANSFER_BATCH_H 36 36 37 37 #include <adt/list.h> -
uspace/lib/usbhost/src/usb_transfer_batch.c
rbbce2c2 rf58ef61 37 37 #include <usb/usb.h> 38 38 #include <usb/debug.h> 39 #include <usb/host/ batch.h>39 #include <usb/host/usb_transfer_batch.h> 40 40 #include <usb/host/hcd.h> 41 41
Note:
See TracChangeset
for help on using the changeset viewer.