mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 12:23:53 -06:00
usb-tablet: Don't claim wakeup capability for USB-2 version
Our ehci code does not implement wakeup support, so claiming support for it with usb-tablet in USB-2 mode causes all tablet events to get lost. http://bugzilla.redhat.com/show_bug.cgi?id=929068 Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
f9618633a8
commit
aa1c9e971e
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ static const USBDescDevice desc_device_tablet2 = {
|
||||||
.bNumInterfaces = 1,
|
.bNumInterfaces = 1,
|
||||||
.bConfigurationValue = 1,
|
.bConfigurationValue = 1,
|
||||||
.iConfiguration = STR_CONFIG_TABLET,
|
.iConfiguration = STR_CONFIG_TABLET,
|
||||||
.bmAttributes = 0xa0,
|
.bmAttributes = 0x80,
|
||||||
.bMaxPower = 50,
|
.bMaxPower = 50,
|
||||||
.nif = 1,
|
.nif = 1,
|
||||||
.ifs = &desc_iface_tablet2,
|
.ifs = &desc_iface_tablet2,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue