Remove i8257 instanciated in malta board, to not have it twice. Signed-off-by: Hervé Poussineau <hpous...@reactos.org> --- hw/isa/piix4.c | 3 +++ hw/mips/mips_malta.c | 1 - 2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/hw/isa/piix4.c b/hw/isa/piix4.c index eb2f730fff..66fdfe25e2 100644 --- a/hw/isa/piix4.c +++ b/hw/isa/piix4.c @@ -158,6 +158,9 @@ static void piix4_realize(PCIDevice *pci, Error **errp) /* initialize ISA irqs */ isa_bus_irqs(isa_bus, s->isa); + /* DMA */ + DMA_init(isa_bus, 0); + piix4_dev = pci; qemu_register_reset(piix4_reset, s); } diff --git a/hw/mips/mips_malta.c b/hw/mips/mips_malta.c index 043fe40bce..647688c58a 100644 --- a/hw/mips/mips_malta.c +++ b/hw/mips/mips_malta.c @@ -1205,7 +1205,6 @@ void mips_malta_init(MachineState *machine) smbus_eeprom_init(smbus, 8, smbus_eeprom_buf, smbus_eeprom_size); g_free(smbus_eeprom_buf); pit = i8254_pit_init(isa_bus, 0x40, 0, NULL); - DMA_init(isa_bus, 0); /* Super I/O */ isa_create_simple(isa_bus, "i8042"); -- 2.11.0