summaryrefslogtreecommitdiff
path: root/hw/ppc
diff options
context:
space:
mode:
authorHervé Poussineau <hpoussin@reactos.org>2013-11-05 00:09:43 +0100
committerAndreas Färber <andreas.faerber@web.de>2014-02-09 15:49:00 +0100
commitc0f2bf9b3f6d8b5961b47b0affbb5456e6123e68 (patch)
tree5f3dd49e14a0dacdc24d9df791216a630a0fb2a7 /hw/ppc
parent1f6b12f75f2c22f861d0202374033a7594c91707 (diff)
downloadqemu-c0f2bf9b3f6d8b5961b47b0affbb5456e6123e68.tar.gz
prep: Kill get_system_io() usage
While ISA address space in prep machine is currently the one returned by get_system_io(), this depends of the implementation of i82378/raven devices, and this may not be the case forever. Use the right ISA address space when adding some more ports to it. We can use whatever ISA device on the right ISA bus, as all ISA devices on the same ISA bus share the same ISA address space. Signed-off-by: Hervé Poussineau <hpoussin@reactos.org> Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Diffstat (limited to 'hw/ppc')
-rw-r--r--hw/ppc/prep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc/prep.c b/hw/ppc/prep.c
index aad0f69117..9f8538cd20 100644
--- a/hw/ppc/prep.c
+++ b/hw/ppc/prep.c
@@ -656,7 +656,7 @@ static void ppc_prep_init(QEMUMachineInitArgs *args)
sysctrl->reset_irq = cpu->env.irq_inputs[PPC6xx_INPUT_HRESET];
portio_list_init(port_list, NULL, prep_portio_list, sysctrl, "prep");
- portio_list_add(port_list, get_system_io(), 0x0);
+ portio_list_add(port_list, isa_address_space_io(isa), 0x0);
/* PowerPC control and status register group */
#if 0