diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-11-20 07:32:31 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-01-16 12:59:59 +0100 |
commit | 5319dc7b42610575cbd3a33f4340c1fb4f19b939 (patch) | |
tree | 5f43fc075e28b242bee3696cfa245c468feb26f1 /include/hw/usb.h | |
parent | 1cf892ca2689c84960b4ce4d2723b6bee453711c (diff) | |
download | qemu-5319dc7b42610575cbd3a33f4340c1fb4f19b939.zip |
usb: add support for microsoft os descriptors
This patch adds support for special usb descriptors used by microsoft
windows. They allow more fine-grained control over driver binding and
adding entries to the registry for configuration.
As this is a guest-visible change the "msos-desc" compat property
has been added to turn this off for 1.7 + older
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'include/hw/usb.h')
-rw-r--r-- | include/hw/usb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/hw/usb.h b/include/hw/usb.h index 2a3ea0c92e..3ef7af7413 100644 --- a/include/hw/usb.h +++ b/include/hw/usb.h @@ -182,6 +182,7 @@ typedef struct USBDescIface USBDescIface; typedef struct USBDescEndpoint USBDescEndpoint; typedef struct USBDescOther USBDescOther; typedef struct USBDescString USBDescString; +typedef struct USBDescMSOS USBDescMSOS; struct USBDescString { uint8_t index; @@ -208,6 +209,8 @@ struct USBEndpoint { enum USBDeviceFlags { USB_DEV_FLAG_FULL_PATH, USB_DEV_FLAG_IS_HOST, + USB_DEV_FLAG_MSOS_DESC_ENABLE, + USB_DEV_FLAG_MSOS_DESC_IN_USE, }; /* definition of a USB device */ |