From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MgzwV-0004co-CB for qemu-devel@nongnu.org; Fri, 28 Aug 2009 07:48:31 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MgzwQ-0004bb-7J for qemu-devel@nongnu.org; Fri, 28 Aug 2009 07:48:30 -0400 Received: from [199.232.76.173] (port=47778 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MgzwQ-0004bQ-0b for qemu-devel@nongnu.org; Fri, 28 Aug 2009 07:48:26 -0400 Received: from moutng.kundenserver.de ([212.227.126.186]:54919) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MgzwO-0000Fd-OD for qemu-devel@nongnu.org; Fri, 28 Aug 2009 07:48:25 -0400 From: Stefan Weil Date: Fri, 28 Aug 2009 13:48:20 +0200 Message-Id: <1251460100-11333-1-git-send-email-weil@mail.berlios.de> In-Reply-To: <4A97C3B4.8030006@mail.berlios.de> References: <4A97C3B4.8030006@mail.berlios.de> Subject: [Qemu-devel] [PATCH] mips malta: Fix fdc regression List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers 8baf73adf664e79eae201c3f618078a220a661d9 (qdev/isa: convert fdc) breaks MIPS Malta: Tried to create isa device isa-fdc with no isa bus present Fix this by creating an isa bus for piix4. Signed-off-by: Stefan Weil --- hw/piix_pci.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hw/piix_pci.c b/hw/piix_pci.c index c9fef92..91fd038 100644 --- a/hw/piix_pci.c +++ b/hw/piix_pci.c @@ -365,6 +365,7 @@ static int piix4_initfn(PCIDevice *d) { uint8_t *pci_conf; + isa_bus_new(&d->qdev); register_savevm("PIIX4", 0, 2, piix_save, piix_load, d); pci_conf = d->config; -- 1.5.6.5