Replace unassigned_io_ops -> unassigned_mem_ops to log accesses as MMIO ones.
Signed-off-by: Philippe Mathieu-Daudé <[email protected]> --- hw/pci-host/gpex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/pci-host/gpex.c b/hw/pci-host/gpex.c index 5f809028be2..23c8d22489d 100644 --- a/hw/pci-host/gpex.c +++ b/hw/pci-host/gpex.c @@ -128,7 +128,7 @@ static void gpex_host_realize(DeviceState *dev, Error **errp) if (s->allow_unmapped_accesses) { memory_region_init_io(&s->io_mmio_window, OBJECT(s), - &unassigned_io_ops, OBJECT(s), + &unassigned_mem_ops, OBJECT(s), "gpex_mmio_window", UINT64_MAX); memory_region_init_io(&s->io_ioport_window, OBJECT(s), &unassigned_io_ops, OBJECT(s), -- 2.51.0
