Changeset 2dbfe44 in mainline
- Timestamp:
- 2015-07-04T01:57:38Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b5f813c
- Parents:
- d51ba359
- Location:
- uspace/drv/bus/usb/ohci
- Files:
-
- 1 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/endpoint_list.c
rd51ba359 r2dbfe44 39 39 40 40 #include <usb/debug.h> 41 #include <usb/host/utils/malloc32.h> 41 42 42 #include "utils/malloc32.h"43 43 #include "endpoint_list.h" 44 44 -
uspace/drv/bus/usb/ohci/endpoint_list.h
rd51ba359 r2dbfe44 39 39 #include <fibril_synch.h> 40 40 #include <sys/types.h> 41 #include <usb/host/utils/malloc32.h> 41 42 42 43 #include "ohci_endpoint.h" 43 44 #include "hw_struct/endpoint_descriptor.h" 44 #include "utils/malloc32.h"45 45 46 46 /** Structure maintains both OHCI queue and software list of active endpoints.*/ -
uspace/drv/bus/usb/ohci/hc.c
rd51ba359 r2dbfe44 48 48 #include "ohci_endpoint.h" 49 49 #include "ohci_batch.h" 50 #include "utils/malloc32.h"51 50 52 51 #include "hc.h" -
uspace/drv/bus/usb/ohci/hw_struct/endpoint_descriptor.c
rd51ba359 r2dbfe44 38 38 39 39 #include <usb/usb.h> 40 #include <usb/host/utils/malloc32.h> 40 41 41 #include "../utils/malloc32.h"42 42 #include "mem_access.h" 43 43 -
uspace/drv/bus/usb/ohci/hw_struct/endpoint_descriptor.h
rd51ba359 r2dbfe44 40 40 41 41 #include <usb/host/endpoint.h> 42 43 #include "../utils/malloc32.h" 42 #include <usb/host/utils/malloc32.h> 43 44 44 #include "transfer_descriptor.h" 45 45 -
uspace/drv/bus/usb/ohci/hw_struct/transfer_descriptor.c
rd51ba359 r2dbfe44 37 37 38 38 #include <usb/usb.h> 39 #include <usb/host/utils/malloc32.h> 39 40 40 #include "../utils/malloc32.h"41 41 #include "completion_codes.h" 42 42 #include "mem_access.h" -
uspace/drv/bus/usb/ohci/ohci_batch.c
rd51ba359 r2dbfe44 41 41 #include <usb/usb.h> 42 42 #include <usb/debug.h> 43 #include <usb/host/utils/malloc32.h> 43 44 44 45 #include "ohci_batch.h" 45 46 #include "ohci_endpoint.h" 46 #include "utils/malloc32.h"47 47 48 48 static void (*const batch_setup[])(ohci_transfer_batch_t*, usb_direction_t); -
uspace/drv/bus/usb/ohci/ohci_endpoint.c
rd51ba359 r2dbfe44 35 35 #include <assert.h> 36 36 #include <stdlib.h> 37 #include <usb/host/utils/malloc32.h> 37 38 38 #include "utils/malloc32.h"39 39 #include "ohci_endpoint.h" 40 40 #include "hc.h"
Note:
See TracChangeset
for help on using the changeset viewer.