From patchwork Mon May 2 18:01:37 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 93689 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 32B91B6F57 for ; Tue, 3 May 2011 04:01:51 +1000 (EST) Received: from localhost ([::1]:50479 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QGxRM-0002FZ-HO for incoming@patchwork.ozlabs.org; Mon, 02 May 2011 14:01:48 -0400 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 Received: from mail1.siemens.de (localhost [127.0.0.1]) by thoth.sbs.de (8.13.6/8.13.6) with ESMTP id p42I1bTg023534; Mon, 2 May 2011 20:01:37 +0200 Received: from mchn199C.mchp.siemens.de ([139.25.109.49]) by mail1.siemens.de (8.13.6/8.13.6) with ESMTP id p42I1bWr001140; Mon, 2 May 2011 20:01:37 +0200 Message-ID: <4DBEF181.6090208@siemens.com> Date: Mon, 02 May 2011 20:01:37 +0200 From: Jan Kiszka User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); de; rv:1.8.1.12) Gecko/20080226 SUSE/2.0.0.12-1.1 Thunderbird/2.0.0.12 Mnenhy/0.7.5.666 MIME-Version: 1.0 To: qemu-devel X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 192.35.17.2 Cc: "Michael S. Tsirkin" Subject: [Qemu-devel] [PATCH] pci: Add class 0x403 as 'audio controller' 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 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"},