diff options
Diffstat (limited to 'hw/usb.h')
| -rw-r--r-- | hw/usb.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/usb.h b/hw/usb.h index e95085f0b3..ae7ccda18c 100644 --- a/hw/usb.h +++ b/hw/usb.h @@ -182,12 +182,17 @@ struct USBEndpoint { QTAILQ_HEAD(, USBPacket) queue; }; +enum USBDeviceFlags { + USB_DEV_FLAG_FULL_PATH, +}; + /* definition of a USB device */ struct USBDevice { DeviceState qdev; USBPort *port; char *port_path; void *opaque; + uint32_t flags; /* Actual connected speed */ int speed; |