From 425c608c481aee79de0a17e054e3c3bb0a6a530f Mon Sep 17 00:00:00 2001 From: Isaku Yamahata Date: Fri, 1 May 2009 18:33:53 +0900 Subject: [PATCH] minor fix of pci_register_bus() keep first_bus linked list correct. Signed-off-by: Isaku Yamahata --- hw/pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/pci.c b/hw/pci.c index 8278894..ee7d403 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -100,6 +100,7 @@ PCIBus *pci_register_bus(pci_set_irq_fn set_irq, pci_map_irq_fn map_irq, bus->irq_opaque = pic; bus->devfn_min = devfn_min; bus->nirq = nirq; + bus->next = first_bus; first_bus = bus; register_savevm("PCIBUS", nbus++, 1, pcibus_save, pcibus_load, bus); return bus; -- 1.7.9.5