From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45706) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YYEWP-0005I9-99 for qemu-devel@nongnu.org; Wed, 18 Mar 2015 10:00:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YYEWH-0001Wi-6G for qemu-devel@nongnu.org; Wed, 18 Mar 2015 10:00:32 -0400 Received: from mx1.redhat.com ([209.132.183.28]:14925) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YYEWG-0001WV-Vx for qemu-devel@nongnu.org; Wed, 18 Mar 2015 10:00:25 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t2IE0OCI023138 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Wed, 18 Mar 2015 10:00:24 -0400 From: Gerd Hoffmann Date: Wed, 18 Mar 2015 15:00:11 +0100 Message-Id: <1426687214-31206-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1426687214-31206-1-git-send-email-kraxel@redhat.com> References: <1426687214-31206-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 1/4] pci: add PCI_CLASS_INPUT_* List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann , "Michael S. Tsirkin" Signed-off-by: Gerd Hoffmann --- include/hw/pci/pci_ids.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/hw/pci/pci_ids.h b/include/hw/pci/pci_ids.h index d7be386..dfccefc 100644 --- a/include/hw/pci/pci_ids.h +++ b/include/hw/pci/pci_ids.h @@ -46,6 +46,13 @@ #define PCI_CLASS_COMMUNICATION_SERIAL 0x0700 #define PCI_CLASS_COMMUNICATION_OTHER 0x0780 +#define PCI_CLASS_INPUT_KEYBOARD 0x0900 +#define PCI_CLASS_INPUT_PEN 0x0901 +#define PCI_CLASS_INPUT_MOUSE 0x0902 +#define PCI_CLASS_INPUT_SCANNER 0x0903 +#define PCI_CLASS_INPUT_GAMEPORT 0x0904 +#define PCI_CLASS_INPUT_OTHER 0x0980 + #define PCI_CLASS_PROCESSOR_CO 0x0b40 #define PCI_CLASS_PROCESSOR_POWERPC 0x0b20 -- 1.8.3.1