From: Marc-André Lureau <marcandre.lur...@redhat.com> Signed-off-by: Marc-André Lureau <marcandre.lur...@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <f4...@amsat.org> [PMD: squashed PC Chipsets: parallel + serial] --- hw/char/parallel.c | 2 +- hw/char/serial.c | 4 ++-- hw/char/sh_serial.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/hw/char/parallel.c b/hw/char/parallel.c index f79dc76543..da8566538e 100644 --- a/hw/char/parallel.c +++ b/hw/char/parallel.c @@ -614,7 +614,7 @@ bool parallel_mm_init(MemoryRegion *address_space, { ParallelState *s; - s = g_malloc0(sizeof(ParallelState)); + s = g_new0(ParallelState, 1); s->irq = irq; qemu_chr_fe_init(&s->chr, chr, &error_abort); s->it_shift = it_shift; diff --git a/hw/char/serial.c b/hw/char/serial.c index 376bd2f240..dcc25d649f 100644 --- a/hw/char/serial.c +++ b/hw/char/serial.c @@ -978,7 +978,7 @@ SerialState *serial_init(int base, qemu_irq irq, int baudbase, { SerialState *s; - s = g_malloc0(sizeof(SerialState)); + s = g_new0(SerialState, 1); s->irq = irq; s->baudbase = baudbase; @@ -1034,7 +1034,7 @@ SerialState *serial_mm_init(MemoryRegion *address_space, { SerialState *s; - s = g_malloc0(sizeof(SerialState)); + s = g_new0(SerialState, 1); s->it_shift = it_shift; s->irq = irq; diff --git a/hw/char/sh_serial.c b/hw/char/sh_serial.c index 835b5378a0..0d1a67d450 100644 --- a/hw/char/sh_serial.c +++ b/hw/char/sh_serial.c @@ -365,7 +365,7 @@ void sh_serial_init(MemoryRegion *sysmem, { sh_serial_state *s; - s = g_malloc0(sizeof(sh_serial_state)); + s = g_new0(sh_serial_state, 1); s->feat = feat; s->flags = SH_SERIAL_FLAG_TEND | SH_SERIAL_FLAG_TDE; -- 2.14.2