From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MR42n-0004Zl-4I for qemu-devel@nongnu.org; Wed, 15 Jul 2009 08:57:09 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MR42i-0004Xd-EG for qemu-devel@nongnu.org; Wed, 15 Jul 2009 08:57:08 -0400 Received: from [199.232.76.173] (port=52537 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MR42i-0004XY-7t for qemu-devel@nongnu.org; Wed, 15 Jul 2009 08:57:04 -0400 Received: from mx2.redhat.com ([66.187.237.31]:55359) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MR42h-0002dn-5Q for qemu-devel@nongnu.org; Wed, 15 Jul 2009 08:57:04 -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 n6FCuxJr004489 for ; Wed, 15 Jul 2009 08:56:59 -0400 From: Gerd Hoffmann Date: Wed, 15 Jul 2009 14:56:53 +0200 Message-Id: <1247662614-12927-4-git-send-email-kraxel@redhat.com> In-Reply-To: <1247662614-12927-1-git-send-email-kraxel@redhat.com> References: <1247662614-12927-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 3/4] qdev/isa: make the piix isa bridge register an isa bus. 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/piix_pci.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/hw/piix_pci.c b/hw/piix_pci.c index 91cebc9..c4f304b 100644 --- a/hw/piix_pci.c +++ b/hw/piix_pci.c @@ -25,6 +25,7 @@ #include "hw.h" #include "pc.h" #include "pci.h" +#include "isa.h" #include "sysbus.h" typedef uint32_t pci_addr_t; @@ -342,6 +343,7 @@ static void piix3_initfn(PCIDevice *d) { uint8_t *pci_conf; + isa_bus_new(&d->qdev); register_savevm("PIIX3", 0, 2, piix_save, piix_load, d); pci_conf = d->config; -- 1.6.2.5