Re: [Qemu-devel] [PATCH 23/88] M68K: use g_new() family of functions

2017-10-06 Thread Thomas Huth
Am Fri,  6 Oct 2017 20:49:18 -0300
schrieb Philippe Mathieu-Daudé :

> From: Marc-André Lureau 
> 
> Signed-off-by: Marc-André Lureau 
> Signed-off-by: Philippe Mathieu-Daudé 
> [PMD: squashed commits]
> ---
>  hw/m68k/mcf5206.c | 4 ++--
>  hw/m68k/mcf5208.c | 2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)

Reviewed-by: Thomas Huth 



[Qemu-devel] [PATCH 23/88] M68K: use g_new() family of functions

2017-10-06 Thread Philippe Mathieu-Daudé
From: Marc-André Lureau 

Signed-off-by: Marc-André Lureau 
Signed-off-by: Philippe Mathieu-Daudé 
[PMD: squashed commits]
---
 hw/m68k/mcf5206.c | 4 ++--
 hw/m68k/mcf5208.c | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/hw/m68k/mcf5206.c b/hw/m68k/mcf5206.c
index b81901fdfd..df45e99547 100644
--- a/hw/m68k/mcf5206.c
+++ b/hw/m68k/mcf5206.c
@@ -137,7 +137,7 @@ static m5206_timer_state *m5206_timer_init(qemu_irq irq)
 m5206_timer_state *s;
 QEMUBH *bh;
 
-s = (m5206_timer_state *)g_malloc0(sizeof(m5206_timer_state));
+s = g_new0(m5206_timer_state, 1);
 bh = qemu_bh_new(m5206_timer_trigger, s);
 s->timer = ptimer_init(bh, PTIMER_POLICY_DEFAULT);
 s->irq = irq;
@@ -533,7 +533,7 @@ qemu_irq *mcf5206_init(MemoryRegion *sysmem, uint32_t base, 
M68kCPU *cpu)
 m5206_mbar_state *s;
 qemu_irq *pic;
 
-s = (m5206_mbar_state *)g_malloc0(sizeof(m5206_mbar_state));
+s = g_new0(m5206_mbar_state, 1);
 
 memory_region_init_io(>iomem, NULL, _mbar_ops, s,
   "mbar", 0x1000);
diff --git a/hw/m68k/mcf5208.c b/hw/m68k/mcf5208.c
index b9dde75106..9b93af5fbd 100644
--- a/hw/m68k/mcf5208.c
+++ b/hw/m68k/mcf5208.c
@@ -183,7 +183,7 @@ static void mcf5208_sys_init(MemoryRegion *address_space, 
qemu_irq *pic)
 memory_region_add_subregion(address_space, 0xfc0a8000, iomem);
 /* Timers.  */
 for (i = 0; i < 2; i++) {
-s = (m5208_timer_state *)g_malloc0(sizeof(m5208_timer_state));
+s = g_new0(m5208_timer_state, 1);
 bh = qemu_bh_new(m5208_timer_trigger, s);
 s->timer = ptimer_init(bh, PTIMER_POLICY_DEFAULT);
 memory_region_init_io(>iomem, NULL, _timer_ops, s,
-- 
2.14.2