TYPE_PFLASH_CFI01 is a TYPE_SYS_BUS_DEVICE which registers its romd MemoryRegion with sysbus_init_mmio(), so we can use the generic sysbus_mmio_get_region() to get the region, no need for a specific pflash_cfi01_get_memory() helper.
Signed-off-by: Philippe Mathieu-Daudé <[email protected]> --- hw/mips/malta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/mips/malta.c b/hw/mips/malta.c index 9afc0b427bf..43b985bccf9 100644 --- a/hw/mips/malta.c +++ b/hw/mips/malta.c @@ -1295,7 +1295,7 @@ void mips_malta_init(MachineState *machine) dinfo ? blk_by_legacy_dinfo(dinfo) : NULL, 65536, 4, 0x0000, 0x0000, 0x0000, 0x0000, be); - bios = pflash_cfi01_get_memory(fl); + bios = sysbus_mmio_get_region(SYS_BUS_DEVICE(fl), 0); fl_idx++; if (kernel_filename) { ram_low_size = MIN(ram_size, 256 * MiB); -- 2.26.2
