Changeset 43814 in vbox for trunk/include
- Timestamp:
- Nov 6, 2012 4:59:33 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmusb.h
r43811 r43814 114 114 115 115 116 /** PDM Device Flags. 117 * @{ */ 118 /** A high-speed capable USB 2.0 device (also required to support full-speed). */ 119 #define PDM_USBREG_HIGHSPEED_CAPABLE RT_BIT(0) 120 /** @} */ 116 121 117 122 /** PDM USB Device Registration Structure, … … 733 738 /** The tracing ID of this device. */ 734 739 uint32_t idTracing; 740 /** The USB version of the hub this device is attached to. Used to 741 * determine whether the device communicates at high-speed or full-/low-speed. */ 742 uint32_t iUsbHubVersion; 735 743 736 744 /** Padding to make achInstanceData aligned at 32 byte boundary. */ 737 uint32_t au32Padding[HC_ARCH_BITS == 32 ? 3 : 4];745 uint32_t au32Padding[HC_ARCH_BITS == 32 ? 2 : 3]; 738 746 739 747 /** Device instance data. The size of this area is defined
Note:
See TracChangeset
for help on using the changeset viewer.