Changeset 1fb1339 in mainline
- Timestamp:
- 2011-03-21T09:08:43Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 81dce9f
- Parents:
- e7bc999
- Location:
- uspace
- Files:
-
- 5 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/Makefile
re7bc999 r1fb1339 40 40 uhci_rh.c \ 41 41 uhci_struct/transfer_descriptor.c \ 42 utils/device_keeper.c \43 42 pci.c \ 44 43 batch.c -
uspace/drv/uhci-hcd/batch.h
re7bc999 r1fb1339 39 39 #include <usbhc_iface.h> 40 40 #include <usb/usb.h> 41 #include <usb/host/device_keeper.h> 41 42 42 43 #include "uhci_struct/transfer_descriptor.h" 43 44 #include "uhci_struct/queue_head.h" 44 #include "utils/device_keeper.h"45 45 46 46 typedef struct batch -
uspace/drv/uhci-hcd/iface.c
re7bc999 r1fb1339 41 41 #include "iface.h" 42 42 #include "uhci_hc.h" 43 #include "utils/device_keeper.h"44 43 45 44 /** Reserve default address interface function -
uspace/drv/uhci-hcd/uhci_hc.h
re7bc999 r1fb1339 42 42 43 43 #include <usbhc_iface.h> 44 #include <usb/host/device_keeper.h> 44 45 45 46 #include "batch.h" 46 47 #include "transfer_list.h" 47 #include "utils/device_keeper.h"48 48 49 49 typedef struct uhci_regs { -
uspace/lib/usb/Makefile
re7bc999 r1fb1339 49 49 src/request.c \ 50 50 src/usb.c \ 51 src/usbdevice.c 51 src/usbdevice.c \ 52 src/host/device_keeper.c 52 53 53 54 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/usb/include/usb/host/device_keeper.h
re7bc999 r1fb1339 27 27 */ 28 28 29 /** @addtogroup drvusbuhcihc29 /** @addtogroup libusb 30 30 * @{ 31 31 */ -
uspace/lib/usb/src/host/device_keeper.c
re7bc999 r1fb1339 27 27 */ 28 28 29 /** @addtogroup drvusbuhcihc29 /** @addtogroup libusb 30 30 * @{ 31 31 */ … … 36 36 #include <errno.h> 37 37 #include <usb/debug.h> 38 39 #include "device_keeper.h" 38 #include <usb/host/device_keeper.h> 40 39 41 40 /*----------------------------------------------------------------------------*/
Note:
See TracChangeset
for help on using the changeset viewer.