Philippe Mathieu-Daudé <phi...@redhat.com> writes: > Hi Markus, > > this is a rework of your 'mips_malta: Clean up definition of flash memory > size somewhat' patch: > https://lists.gnu.org/archive/html/qemu-devel/2019-02/msg07177.html
Diff between my patch and your series: diff --git a/hw/mips/mips_malta.c b/hw/mips/mips_malta.c index 9ade9b194c..2827074e9b 100644 --- a/hw/mips/mips_malta.c +++ b/hw/mips/mips_malta.c @@ -1269,12 +1269,12 @@ void mips_malta_init(MachineState *machine) if (dinfo) { printf("Register parallel flash %d size " TARGET_FMT_lx " at " "addr %08llx '%s' %x\n", - fl_idx, FLASH_SIZE, FLASH_ADDRESS, + fl_idx, bios_size, FLASH_ADDRESS, blk_name(dinfo->bdrv), fl_sectors); } #endif fl = pflash_cfi01_register(FLASH_ADDRESS, NULL, "mips_malta.bios", - FLASH_SIZE, + BIOS_SIZE, dinfo ? blk_by_legacy_dinfo(dinfo) : NULL, 65536, fl_sectors, 4, 0x0000, 0x0000, 0x0000, 0x0000, be); We have in include/hw/mips/bios.h #define BIOS_SIZE (4 * MiB) and locally #define FLASH_SIZE 0x400000 target_long bios_size = FLASH_SIZE; Three names for the same value. Therefore, there's no functional difference, just more cleanup. Good to know.