Changeset 07f49ae in mainline
- Timestamp:
- 2011-08-31T11:17:54Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b5cfeab4
- Parents:
- 0815000
- Location:
- uspace/drv/bus/usb/uhci
- Files:
-
- 3 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhci/Makefile
r0815000 r07f49ae 42 42 43 43 SOURCES = \ 44 hc.c \ 44 45 main.c \ 46 pci.c \ 47 root_hub.c \ 45 48 transfer_list.c \ 46 49 uhci.c \ 47 hc.c \ 48 root_hub.c \ 49 hw_struct/transfer_descriptor.c \ 50 pci.c \ 51 batch.c 50 uhci_batch.c \ 51 hw_struct/transfer_descriptor.c 52 52 53 53 include $(USPACE_PREFIX)/Makefile.common -
uspace/drv/bus/usb/uhci/hc.c
r0815000 r07f49ae 41 41 42 42 #include "hc.h" 43 #include " batch.h"43 #include "uhci_batch.h" 44 44 45 45 #define UHCI_INTR_ALLOW_INTERRUPTS \ -
uspace/drv/bus/usb/uhci/transfer_list.c
r0815000 r07f49ae 37 37 #include <usb/debug.h> 38 38 #include <libarch/barrier.h> 39 39 40 #include "transfer_list.h" 40 #include " batch.h"41 #include "uhci_batch.h" 41 42 42 43 static void transfer_list_remove_batch( -
uspace/drv/bus/usb/uhci/uhci_batch.c
r0815000 r07f49ae 38 38 #include <usb/debug.h> 39 39 40 #include " batch.h"40 #include "uhci_batch.h" 41 41 #include "transfer_list.h" 42 42 #include "hw_struct/transfer_descriptor.h"
Note:
See TracChangeset
for help on using the changeset viewer.