diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-01-31 14:52:07 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-02-06 10:23:17 +0100 |
commit | 811ad5d8f1d3f35240043fe880d34dce6f2097a3 (patch) | |
tree | 66371b569263d818ee8884c1326ca6d93d4905fe /include/hw/usb.h | |
parent | e306b2fd3bce369feb05e2510299f81d71bc6092 (diff) |
usb: accept usb3 control requests
Windows 10 reportedly sends these, so accept them in case
the device in question is a superspeed (usb3) device.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 1485870727-21956-2-git-send-email-kraxel@redhat.com
Diffstat (limited to 'include/hw/usb.h')
-rw-r--r-- | include/hw/usb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/usb.h b/include/hw/usb.h index 43838c9f5d..c42b29c866 100644 --- a/include/hw/usb.h +++ b/include/hw/usb.h @@ -135,6 +135,8 @@ #define USB_REQ_GET_INTERFACE 0x0A #define USB_REQ_SET_INTERFACE 0x0B #define USB_REQ_SYNCH_FRAME 0x0C +#define USB_REQ_SET_SEL 0x30 +#define USB_REQ_SET_ISOCH_DELAY 0x31 #define USB_DEVICE_SELF_POWERED 0 #define USB_DEVICE_REMOTE_WAKEUP 1 |