From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:44818) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QTZ6d-0008Ph-Rc for qemu-devel@nongnu.org; Mon, 06 Jun 2011 08:40:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QTZ6c-0005bX-3K for qemu-devel@nongnu.org; Mon, 06 Jun 2011 08:40:31 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48443) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QTZ6b-0005bJ-Oq for qemu-devel@nongnu.org; Mon, 06 Jun 2011 08:40:30 -0400 From: Gerd Hoffmann Date: Mon, 6 Jun 2011 14:39:06 +0200 Message-Id: <1307363962-27223-16-git-send-email-kraxel@redhat.com> In-Reply-To: <1307363962-27223-1-git-send-email-kraxel@redhat.com> References: <1307363962-27223-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 15/31] The USB tablet should not claim boot protocol support. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin O'Connor , Gerd Hoffmann From: Kevin O'Connor 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 Signed-off-by: Gerd Hoffmann --- 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[]) { -- 1.7.1