From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:45760) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QGxRE-0002FI-9T for qemu-devel@nongnu.org; Mon, 02 May 2011 14:01:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QGxRD-0006Jy-Ft for qemu-devel@nongnu.org; Mon, 02 May 2011 14:01:40 -0400 Received: from thoth.sbs.de ([192.35.17.2]:30321) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QGxRD-0006Js-6x for qemu-devel@nongnu.org; Mon, 02 May 2011 14:01:39 -0400 Message-ID: <4DBEF181.6090208@siemens.com> Date: Mon, 02 May 2011 20:01:37 +0200 From: Jan Kiszka MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] pci: Add class 0x403 as 'audio controller' List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel Cc: "Michael S. Tsirkin" Used by HD audio controllers like our intel-hda. Signed-off-by: Jan Kiszka --- hw/pci.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hw/pci.c b/hw/pci.c index 6b577e1..87f1b0c 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -1145,6 +1145,7 @@ static const pci_class_desc pci_class_descriptions[] = { 0x0400, "Video controller", "video"}, { 0x0401, "Audio controller", "sound"}, { 0x0402, "Phone"}, + { 0x0403, "Audio controller", "sound"}, { 0x0480, "Multimedia controller"}, { 0x0500, "RAM controller", "memory"}, { 0x0501, "Flash controller", "flash"}, -- 1.7.1