From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MR30D-00070G-I2 for qemu-devel@nongnu.org; Wed, 15 Jul 2009 07:50:25 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MR308-0006w7-Fd for qemu-devel@nongnu.org; Wed, 15 Jul 2009 07:50:24 -0400 Received: from [199.232.76.173] (port=53118 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MR308-0006vu-8l for qemu-devel@nongnu.org; Wed, 15 Jul 2009 07:50:20 -0400 Received: from mx2.redhat.com ([66.187.237.31]:33761) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MR307-0004M1-LZ for qemu-devel@nongnu.org; Wed, 15 Jul 2009 07:50:19 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n6FBoJoJ015700 for ; Wed, 15 Jul 2009 07:50:19 -0400 From: Gerd Hoffmann Date: Wed, 15 Jul 2009 13:50:13 +0200 Message-Id: <1247658615-1039-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1247658615-1039-1-git-send-email-kraxel@redhat.com> References: <1247658615-1039-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 1/3] qdev: es1370+ac97 description List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- hw/ac97.c | 1 + hw/es1370.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/hw/ac97.c b/hw/ac97.c index f18fa52..6c818c9 100644 --- a/hw/ac97.c +++ b/hw/ac97.c @@ -1366,6 +1366,7 @@ int ac97_init (PCIBus *bus) static PCIDeviceInfo ac97_info = { .qdev.name = "AC97", + .qdev.desc = "Intel 82801AA AC97 Audio", .qdev.size = sizeof (PCIAC97LinkState), .init = ac97_initfn, }; diff --git a/hw/es1370.c b/hw/es1370.c index 8d5a9f9..5c9af0e 100644 --- a/hw/es1370.c +++ b/hw/es1370.c @@ -1054,6 +1054,7 @@ int es1370_init (PCIBus *bus) static PCIDeviceInfo es1370_info = { .qdev.name = "ES1370", + .qdev.desc = "ENSONIQ AudioPCI ES1370", .qdev.size = sizeof (PCIES1370State), .init = es1370_initfn, }; -- 1.6.2.5