diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-12-27 20:52:39 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-12-27 20:52:39 +0000 |
commit | f6b6f1bc80d6657d6a98a078425c7d3d569de5e9 (patch) | |
tree | e805a59eb3f56aafc5e80f359108bf44ee409e79 /hw/apb_pci.c | |
parent | cf616802171905a9b6d087a69caa3b978b9cd741 (diff) | |
download | qemu-f6b6f1bc80d6657d6a98a078425c7d3d569de5e9.tar.gz qemu-f6b6f1bc80d6657d6a98a078425c7d3d569de5e9.tar.bz2 qemu-f6b6f1bc80d6657d6a98a078425c7d3d569de5e9.zip |
Sparc64: move APB PCI memory base to correct location
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/apb_pci.c')
-rw-r--r-- | hw/apb_pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/apb_pci.c b/hw/apb_pci.c index fe8faa6d05..f05308b92b 100644 --- a/hw/apb_pci.c +++ b/hw/apb_pci.c @@ -225,6 +225,8 @@ PCIBus *pci_apb_init(target_phys_addr_t special_base, d->host_state.bus = pci_register_bus(&d->busdev.qdev, "pci", pci_apb_set_irq, pci_pbm_map_irq, pic, 0, 32); + pci_bus_set_mem_base(d->host_state.bus, mem_base); + pci_create_simple(d->host_state.bus, 0, "pbm"); /* APB secondary busses */ *bus2 = pci_bridge_init(d->host_state.bus, PCI_DEVFN(1, 0), |