summaryrefslogtreecommitdiff
path: root/hw/usb/dev-hid.c
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2013-04-02 19:15:05 +0200
committerGerd Hoffmann <kraxel@redhat.com>2013-04-03 11:39:43 +0200
commitaa1c9e971e80d25b92908dce3dec7c38b49480ea (patch)
tree33fec5cf78c016a154b4dbec8d20b67a6c93b384 /hw/usb/dev-hid.c
parentf9618633a86cc74b33f178f05154d4edbc08c0fc (diff)
downloadqemu-aa1c9e971e80d25b92908dce3dec7c38b49480ea.tar.gz
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>
Diffstat (limited to 'hw/usb/dev-hid.c')
-rw-r--r--hw/usb/dev-hid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/dev-hid.c b/hw/usb/dev-hid.c
index 9701048887..317b4740e2 100644
--- a/hw/usb/dev-hid.c
+++ b/hw/usb/dev-hid.c
@@ -236,7 +236,7 @@ static const USBDescDevice desc_device_tablet2 = {
.bNumInterfaces = 1,
.bConfigurationValue = 1,
.iConfiguration = STR_CONFIG_TABLET,
- .bmAttributes = 0xa0,
+ .bmAttributes = 0x80,
.bMaxPower = 50,
.nif = 1,
.ifs = &desc_iface_tablet2,