diff options
author | Avi Kivity | 2009-06-14 10:38:51 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-06-16 22:18:37 +0200 |
commit | 1eed09cb4a0b187427ef1ccefd42579174f20a7c (patch) | |
tree | 10451f9083433986d683085c342dd8c53148e854 /hw/ppc_newworld.c | |
parent | kvm: Restrict configure check to Linux (diff) | |
download | qemu-1eed09cb4a0b187427ef1ccefd42579174f20a7c.tar.gz qemu-1eed09cb4a0b187427ef1ccefd42579174f20a7c.tar.xz qemu-1eed09cb4a0b187427ef1ccefd42579174f20a7c.zip |
Remove io_index argument from cpu_register_io_memory()
The parameter is always zero except when registering the three internal
io regions (ROM, unassigned, notdirty). Remove the parameter to reduce
the API's power, thus facilitating future change.
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/ppc_newworld.c')
-rw-r--r-- | hw/ppc_newworld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc_newworld.c b/hw/ppc_newworld.c index f0d167dbd9..22beedb87f 100644 --- a/hw/ppc_newworld.c +++ b/hw/ppc_newworld.c @@ -246,7 +246,7 @@ static void ppc_core99_init (ram_addr_t ram_size, isa_mmio_init(0xf2000000, 0x00800000); /* UniN init */ - unin_memory = cpu_register_io_memory(0, unin_read, unin_write, NULL); + unin_memory = cpu_register_io_memory(unin_read, unin_write, NULL); cpu_register_physical_memory(0xf8000000, 0x00001000, unin_memory); openpic_irqs = qemu_mallocz(smp_cpus * sizeof(qemu_irq *)); |