Changeset 87644b4 in mainline
- Timestamp:
- 2011-03-21T23:35:52Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 408ebc5, b01995b
- Parents:
- b9fa0a9
- Location:
- uspace/drv/uhci-hcd
- Files:
-
- 4 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/Makefile
rb9fa0a9 r87644b4 39 39 hc.c \ 40 40 root_hub.c \ 41 uhci_struct/transfer_descriptor.c \41 hw_struct/transfer_descriptor.c \ 42 42 pci.c \ 43 43 batch.c -
uspace/drv/uhci-hcd/batch.c
rb9fa0a9 r87644b4 40 40 #include "batch.h" 41 41 #include "transfer_list.h" 42 #include "hw_struct/transfer_descriptor.h" 42 43 #include "utils/malloc32.h" 43 #include "uhci_struct/transfer_descriptor.h"44 44 45 45 #define DEFAULT_ERROR_COUNT 3 -
uspace/drv/uhci-hcd/batch.h
rb9fa0a9 r87644b4 42 42 #include <usb/host/batch.h> 43 43 44 #include " uhci_struct/queue_head.h"44 #include "hw_struct/queue_head.h" 45 45 46 46 usb_transfer_batch_t * batch_get( -
uspace/drv/uhci-hcd/transfer_list.h
rb9fa0a9 r87644b4 37 37 #include <fibril_synch.h> 38 38 39 #include "uhci_struct/queue_head.h"40 41 39 #include "batch.h" 40 #include "hw_struct/queue_head.h" 42 41 43 42 typedef struct transfer_list
Note:
See TracChangeset
for help on using the changeset viewer.