On 27/12/23 22:02, Mark Cave-Ayland wrote:
There is no need to dynamically allocate the memory region from the heap.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayl...@ilande.co.uk>
---
  hw/m68k/q800.c         | 7 +++----
  include/hw/m68k/q800.h | 1 +
  2 files changed, 4 insertions(+), 4 deletions(-)


@@ -406,13 +405,13 @@ static void q800_machine_init(MachineState *machine)
      sysbus_connect_irq(sysbus, 0,
                         qdev_get_gpio_in(DEVICE(&m->glue), GLUE_IRQ_IN_SONIC));
- memory_region_init_rom(dp8393x_prom, NULL, "dp8393x-q800.prom",
+    memory_region_init_rom(&m->dp8393x_prom, NULL, "dp8393x-q800.prom",
                             SONIC_PROM_SIZE, &error_fatal);
      memory_region_add_subregion(get_system_memory(), SONIC_PROM_BASE,
-                                dp8393x_prom);
+                                &m->dp8393x_prom);
/* Add MAC address with valid checksum to PROM */
-    prom = memory_region_get_ram_ptr(dp8393x_prom);
+    prom = memory_region_get_ram_ptr(&m->dp8393x_prom);
      checksum = 0;
      for (i = 0; i < 6; i++) {
          prom[i] = revbit8(nd_table[0].macaddr.a[i]);

Similar pattern in mips_jazz_init(). I wonder if we can extract the
PROM checksums in a common helper declared in "hw/net/dp8393x.h".

Anyhow for this patch:
Reviewed-by: Philippe Mathieu-Daudé <phi...@linaro.org>


Reply via email to