Commit 4258b780afaa7251d9a7e363fe69e5672464fb56
1 parent
52f61fde
Sparc64 build fix (Igor Kovalenko).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2269 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
2 additions
and
2 deletions
hw/apb_pci.c
| @@ -251,8 +251,8 @@ PCIBus *pci_apb_init(target_ulong special_base, target_ulong mem_base, | @@ -251,8 +251,8 @@ PCIBus *pci_apb_init(target_ulong special_base, target_ulong mem_base, | ||
| 251 | d->config[0x0E] = 0x00; // header_type | 251 | d->config[0x0E] = 0x00; // header_type |
| 252 | 252 | ||
| 253 | /* APB secondary busses */ | 253 | /* APB secondary busses */ |
| 254 | - secondary = pci_bridge_init(s->bus, 8, 0x108e5000, pci_apb_map_irq); | ||
| 255 | - pci_bridge_init(s->bus, 9, 0x108e5000, pci_apb_map_irq); | 254 | + secondary = pci_bridge_init(s->bus, 8, 0x108e5000, pci_apb_map_irq, "Advanced PCI Bus secondary bridge 1"); |
| 255 | + pci_bridge_init(s->bus, 9, 0x108e5000, pci_apb_map_irq, "Advanced PCI Bus secondary bridge 2"); | ||
| 256 | return secondary; | 256 | return secondary; |
| 257 | } | 257 | } |
| 258 | 258 |