Changeset c7137738 in mainline
- Timestamp:
- 2010-11-15T14:52:43Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3f0a7971
- Parents:
- 7494fb4
- Files:
-
- 10 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
.bzrignore
r7494fb4 rc7137738 93 93 ./uspace/dist/drv/root/ 94 94 ./uspace/dist/drv/rootia32/ 95 ./uspace/dist/drv/uhci/ 96 ./uspace/dist/drv/usbkbd/ 95 97 ./uspace/dist/srv/arp 96 98 ./uspace/dist/srv/ata_bd … … 126 128 ./uspace/drv/pciintel/pciintel 127 129 ./uspace/drv/rootia32/rootia32 130 ./uspace/drv/uhci/uhci 131 ./uspace/drv/usbkbd/usbkbd 128 132 ./uspace/srv/bd/ata_bd/ata_bd 129 133 ./uspace/srv/bd/file_bd/file_bd -
boot/arch/amd64/Makefile.inc
r7494fb4 rc7137738 40 40 pciintel \ 41 41 isa \ 42 ns8250 42 ns8250 \ 43 uhci \ 44 usbkbd 43 45 44 46 RD_DRV_CFG += \ -
uspace/Makefile
r7494fb4 rc7137738 120 120 DIRS += drv/isa 121 121 DIRS += drv/ns8250 122 DIRS += drv/uhci 123 DIRS += drv/usbkbd 122 124 endif 123 125 -
uspace/lib/usb/Makefile
r7494fb4 rc7137738 29 29 USPACE_PREFIX = ../.. 30 30 LIBRARY = libusb 31 LIBS = $(LIBDRV_PREFIX)/libdrv.a 32 EXTRA_CFLAGS += -I$(LIBDRV_PREFIX)/include 31 33 32 34 SOURCES = \ 33 35 hcd.c \ 34 usb.c 36 hcdhubd.c \ 37 usb.c \ 38 usbdrv.c 35 39 36 40 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/usb/hcd.c
r7494fb4 rc7137738 58 58 #define NAMESPACE "usb" 59 59 60 /** String representation for USB transfer type. */61 const char * usb_str_transfer_type(usb_transfer_type_t t)62 {63 switch (t) {64 case USB_TRANSFER_ISOCHRONOUS:65 return "isochronous";66 case USB_TRANSFER_INTERRUPT:67 return "interrupt";68 case USB_TRANSFER_CONTROL:69 return "control";70 case USB_TRANSFER_BULK:71 return "bulk";72 default:73 return "unknown";74 }75 }76 60 77 61 /** String representation of USB transaction outcome. */
Note:
See TracChangeset
for help on using the changeset viewer.