Changeset e8d82cb in mainline
- Timestamp:
- 2011-12-06T21:02:47Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b6bade0
- Parents:
- 9babc17
- Location:
- uspace/lib/usb
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/include/usb/classes/hub.h
r9babc17 re8d82cb 84 84 85 85 /** 86 * @brief usb hub descriptor 87 * 88 * For more information see Universal Serial Bus Specification Revision 1.1 chapter 11.16.2 86 * @brief usb hub descriptor 87 * 88 * For more information see Universal Serial Bus Specification Revision 1.1 89 * chapter 11.16.2 89 90 */ 90 91 typedef struct usb_hub_descriptor_type { -
uspace/lib/usb/src/usb.c
r9babc17 re8d82cb 39 39 40 40 static const char *str_speed[] = { 41 "low",42 "full",43 "high"41 [USB_SPEED_LOW] = "low", 42 [USB_SPEED_FULL] = "full", 43 [USB_SPEED_HIGH] = "high", 44 44 }; 45 45 46 46 static const char *str_transfer_type[] = { 47 "control",48 "isochronous",49 "bulk",50 "interrupt"47 [USB_TRANSFER_CONTROL] = "control", 48 [USB_TRANSFER_ISOCHRONOUS] = "isochronous", 49 [USB_TRANSFER_BULK] = "bulk", 50 [USB_TRANSFER_INTERRUPT] = "interrupt", 51 51 }; 52 52 53 53 static const char *str_transfer_type_short[] = { 54 "ctrl",55 "iso",56 "bulk",57 "intr"54 [USB_TRANSFER_CONTROL] = "ctrl", 55 [USB_TRANSFER_ISOCHRONOUS] = "iso", 56 [USB_TRANSFER_BULK] = "bulk", 57 [USB_TRANSFER_INTERRUPT] = "intr", 58 58 }; 59 59 60 60 static const char *str_direction[] = { 61 "in",62 "out",63 "both"61 [USB_DIRECTION_IN] = "in", 62 [USB_DIRECTION_OUT] = "out", 63 [USB_DIRECTION_BOTH] = "both", 64 64 }; 65 65
Note:
See TracChangeset
for help on using the changeset viewer.