From: pbrook Date: Fri, 22 Dec 2006 22:35:25 +0000 (+0000) Subject: Sparc64 build fix (Igor Kovalenko). X-Git-Tag: release_0_9_1~1626 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8acbf17e30d263afa6575a3d9c5024710bb954b5;p=qemu-xen-4.6-testing.git Sparc64 build fix (Igor Kovalenko). --- diff --git a/hw/apb_pci.c b/hw/apb_pci.c index 3ebe3207f..a5fe9b989 100644 --- a/hw/apb_pci.c +++ b/hw/apb_pci.c @@ -251,8 +251,8 @@ PCIBus *pci_apb_init(target_ulong special_base, target_ulong mem_base, d->config[0x0E] = 0x00; // header_type /* APB secondary busses */ - secondary = pci_bridge_init(s->bus, 8, 0x108e5000, pci_apb_map_irq); - pci_bridge_init(s->bus, 9, 0x108e5000, pci_apb_map_irq); + secondary = pci_bridge_init(s->bus, 8, 0x108e5000, pci_apb_map_irq, "Advanced PCI Bus secondary bridge 1"); + pci_bridge_init(s->bus, 9, 0x108e5000, pci_apb_map_irq, "Advanced PCI Bus secondary bridge 2"); return secondary; }