diff options
author | Hervé Poussineau <hpoussin@reactos.org> | 2013-07-23 23:16:45 +0200 |
---|---|---|
committer | Andreas Färber <andreas.faerber@web.de> | 2013-07-31 23:25:27 +0200 |
commit | 768d7e2c7f5d20f412506f3a31626185ac54c559 (patch) | |
tree | 8cb653a3c79201111664c825205dc3240015faaf /hw/pci-host | |
parent | 1197cbb9eda1dc82e2fa1815ca62bc3de158353e (diff) |
pci-host/prep: Set isa_mem_base in the PCI host bridge
Currently, it is done by i82378 PCI-ISA bridge, which shouldn't
care about it.
Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Diffstat (limited to 'hw/pci-host')
-rw-r--r-- | hw/pci-host/prep.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/pci-host/prep.c b/hw/pci-host/prep.c index 09d3b32291..e120058511 100644 --- a/hw/pci-host/prep.c +++ b/hw/pci-host/prep.c @@ -119,6 +119,8 @@ static void raven_pcihost_realizefn(DeviceState *d, Error **errp) MemoryRegion *address_space_mem = get_system_memory(); int i; + isa_mem_base = 0xc0000000; + for (i = 0; i < 4; i++) { sysbus_init_irq(dev, &s->irq[i]); } |