Changeset ff6dd73 in mainline
- Timestamp:
- 2011-08-31T17:49:05Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 70fb822
- Parents:
- b991d37
- Location:
- uspace/drv/bus/usb/ohci
- Files:
-
- 4 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/Makefile
rb991d37 rff6dd73 44 44 45 45 SOURCES = \ 46 batch.c \47 46 endpoint_list.c \ 48 47 hc.c \ 49 48 main.c \ 50 49 ohci.c \ 50 ohci_batch.c \ 51 51 ohci_endpoint.c \ 52 52 pci.c \ -
uspace/drv/bus/usb/ohci/hc.h
rb991d37 rff6dd73 45 45 #include <usb/host/hcd.h> 46 46 47 #include " batch.h"47 #include "ohci_batch.h" 48 48 #include "ohci_regs.h" 49 49 #include "root_hub.h" -
uspace/drv/bus/usb/ohci/ohci.c
rb991d37 rff6dd73 91 91 &dev_to_ohci(fun->dev)->hc.generic.dev_manager; 92 92 93 usb_address_t addr = usb_device_keeper_find(manager, handle);93 const usb_address_t addr = usb_device_keeper_find(manager, handle); 94 94 if (addr < 0) { 95 95 return addr; -
uspace/drv/bus/usb/ohci/ohci_batch.c
rb991d37 rff6dd73 38 38 #include <usb/debug.h> 39 39 40 #include " batch.h"40 #include "ohci_batch.h" 41 41 #include "ohci_endpoint.h" 42 42 #include "utils/malloc32.h" -
uspace/drv/bus/usb/ohci/root_hub.h
rb991d37 rff6dd73 37 37 #include <usb/usb.h> 38 38 #include <usb/dev/driver.h> 39 #include <usb/host/batch.h> 39 40 40 41 #include "ohci_regs.h" 41 #include "batch.h"42 42 43 43 #define HUB_DESCRIPTOR_MAX_SIZE (7 + 2 + 2)
Note:
See TracChangeset
for help on using the changeset viewer.