From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MVpLq-00019p-L1 for qemu-devel@nongnu.org; Tue, 28 Jul 2009 12:16:30 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MVpLp-00018q-1x for qemu-devel@nongnu.org; Tue, 28 Jul 2009 12:16:29 -0400 Received: from [199.232.76.173] (port=59031 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MVpLo-00018l-JZ for qemu-devel@nongnu.org; Tue, 28 Jul 2009 12:16:28 -0400 Received: from mx2.redhat.com ([66.187.237.31]:52250) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MVpLo-0004et-1R for qemu-devel@nongnu.org; Tue, 28 Jul 2009 12:16:28 -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 n6SGGRns015223 for ; Tue, 28 Jul 2009 12:16:27 -0400 From: Gerd Hoffmann Date: Tue, 28 Jul 2009 18:16:16 +0200 Message-Id: <1248797778-783-4-git-send-email-kraxel@redhat.com> In-Reply-To: <1248797778-783-1-git-send-email-kraxel@redhat.com> References: <1248797778-783-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 3/5] 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 db40ed3..e2ddf4b 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