mirror of
https://github.com/mii443/qemu.git
synced 2025-12-12 05:18:37 +00:00
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>
This commit is contained in:
committed by
Anthony Liguori
parent
dff840348e
commit
1eed09cb4a
@@ -268,7 +268,7 @@ static void sp804_init(SysBusDevice *dev)
|
||||
s->timer[1] = arm_timer_init(1000000);
|
||||
s->timer[0]->irq = qi[0];
|
||||
s->timer[1]->irq = qi[1];
|
||||
iomemtype = cpu_register_io_memory(0, sp804_readfn,
|
||||
iomemtype = cpu_register_io_memory(sp804_readfn,
|
||||
sp804_writefn, s);
|
||||
sysbus_init_mmio(dev, 0x1000, iomemtype);
|
||||
register_savevm("sp804", -1, 1, sp804_save, sp804_load, s);
|
||||
@@ -338,7 +338,7 @@ static void icp_pit_init(SysBusDevice *dev)
|
||||
sysbus_init_irq(dev, &s->timer[1]->irq);
|
||||
sysbus_init_irq(dev, &s->timer[2]->irq);
|
||||
|
||||
iomemtype = cpu_register_io_memory(0, icp_pit_readfn,
|
||||
iomemtype = cpu_register_io_memory(icp_pit_readfn,
|
||||
icp_pit_writefn, s);
|
||||
sysbus_init_mmio(dev, 0x1000, iomemtype);
|
||||
/* This device has no state to save/restore. The component timers will
|
||||
|
||||
Reference in New Issue
Block a user