From patchwork Thu Aug 22 13:39:55 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Marcel Apfelbaum X-Patchwork-Id: 269076 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id A181E2C00C4 for ; Thu, 22 Aug 2013 23:41:07 +1000 (EST) Received: from localhost ([::1]:59872 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VCV8L-000154-1I for incoming@patchwork.ozlabs.org; Thu, 22 Aug 2013 09:41:05 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36609) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VCV81-00014t-Rq for qemu-devel@nongnu.org; Thu, 22 Aug 2013 09:40:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VCV7u-0003CW-OX for qemu-devel@nongnu.org; Thu, 22 Aug 2013 09:40:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:64386) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VCV7u-0003C8-H6; Thu, 22 Aug 2013 09:40:38 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r7MDebMR007501 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 22 Aug 2013 09:40:37 -0400 Received: from localhost.tlv.redhat.com (dhcp-4-195.tlv.redhat.com [10.35.4.195]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r7MDeTcX026304; Thu, 22 Aug 2013 09:40:31 -0400 From: Marcel Apfelbaum To: qemu-devel@nongnu.org Date: Thu, 22 Aug 2013 16:39:55 +0300 Message-Id: <1377178795-18625-1-git-send-email-marcel.a@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-MIME-Autoconverted: from 8bit to quoted-printable by mx1.redhat.com id r7MDebMR007501 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: aliguori@us.ibm.com, mst@redhat.com, Marcel Apfelbaum , armbru@redhat.com, qemu-stable@nongnu.org, kraxel@redhat.com, pbonzini@redhat.com, afaerber@suse.de Subject: [Qemu-devel] [PATCH v2] usb/dev-hid: Modified usb-tablet category from Misc to Input X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org usb-tablet device was wrongy assgined to Misc category Reported-by: Markus Armbruster Signed-off-by: Marcel Apfelbaum Reviewed-by: Andreas Färber --- Changes from v2: - Add cc to qemu-stable and Gerd Hoffmann - Changed subject prefix from hw to usb/dev-hid hw/usb/dev-hid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/usb/dev-hid.c b/hw/usb/dev-hid.c index 66c6331..5956720 100644 --- a/hw/usb/dev-hid.c +++ b/hw/usb/dev-hid.c @@ -658,7 +658,7 @@ static void usb_tablet_class_initfn(ObjectClass *klass, void *data) uc->product_desc = "QEMU USB Tablet"; dc->vmsd = &vmstate_usb_ptr; dc->props = usb_tablet_properties; - set_bit(DEVICE_CATEGORY_MISC, dc->categories); + set_bit(DEVICE_CATEGORY_INPUT, dc->categories); } static const TypeInfo usb_tablet_info = {