diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2011-05-28 11:47:50 -0400 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2011-06-14 12:56:49 +0200 |
commit | 69bf405b50ae18cdbbb7b8bf08ab1f275d4e0d75 (patch) | |
tree | 461008d847c1327dd6ea67d7412bda686df9f175 /hw | |
parent | 46115ac4c4f211b5b9b4d22f7af6ebe91c79a05c (diff) | |
download | qemu-69bf405b50ae18cdbbb7b8bf08ab1f275d4e0d75.zip qemu-69bf405b50ae18cdbbb7b8bf08ab1f275d4e0d75.tar.gz qemu-69bf405b50ae18cdbbb7b8bf08ab1f275d4e0d75.tar.bz2 |
The USB tablet should not claim boot protocol support.
The USB tablet advertises that it supports the "boot" protocol.
However, its reports aren't "boot" protocol compatible. So, it
shouldn't claim that.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/usb-hid.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/usb-hid.c b/hw/usb-hid.c index 8197a86..d711b5c 100644 --- a/hw/usb-hid.c +++ b/hw/usb-hid.c @@ -142,7 +142,6 @@ static const USBDescIface desc_iface_tablet = { .bInterfaceNumber = 0, .bNumEndpoints = 1, .bInterfaceClass = USB_CLASS_HID, - .bInterfaceSubClass = 0x01, /* boot */ .bInterfaceProtocol = 0x02, .ndesc = 1, .descs = (USBDescOther[]) { |