This should fix the last caller causing a NULL ISADev to be passed to
isa_register_portio_list() which now allows for disusing the isabus global
there.
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
---
hw/ide/piix.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/ide/piix.c b/hw/ide/piix.c
index 312611c61f..087568ecf1 100644
--- a/hw/ide/piix.c
+++ b/hw/ide/piix.c
@@ -161,7 +161,7 @@ static int pci_piix_init_ports(PCIIDEState *d)
for (i = 0; i < 2; i++) {
ide_bus_init(&d->bus[i], sizeof(d->bus[i]), dev, i, 2);
- isa_ide_init_ioport(&d->bus[i], NULL, port_info[i].iobase,
+ pci_ide_init_ioport(&d->bus[i], PCI_DEVICE(d), port_info[i].iobase,
port_info[i].iobase2);
ide_init2(&d->bus[i], qdev_get_gpio_in(dev, i));
--
2.36.1