summary refs log tree commit diff stats
path: root/hw/apb_pci.c
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2006-12-22 22:35:25 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2006-12-22 22:35:25 +0000
commit4258b780afaa7251d9a7e363fe69e5672464fb56 (patch)
tree3f676397f43a8cc8da53f2fed71756fa2ca57a57 /hw/apb_pci.c
parent52f61fdeec9debd499776f58ef485df76e4b38a5 (diff)
downloadfocaccia-qemu-4258b780afaa7251d9a7e363fe69e5672464fb56.tar.gz
focaccia-qemu-4258b780afaa7251d9a7e363fe69e5672464fb56.zip
Sparc64 build fix (Igor Kovalenko).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2269 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/apb_pci.c')
-rw-r--r--hw/apb_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/apb_pci.c b/hw/apb_pci.c
index 3ebe3207fe..a5fe9b989e 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;
 }