From fc559b1aeda8893aeb57f7ecf19dad4c96a31e92 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Wed, 3 Jul 2019 23:03:04 -0700 Subject: [PATCH] lpc: Update qemu_chr_new call arguments --- hw/xbox/lpc47m157.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xbox/lpc47m157.c b/hw/xbox/lpc47m157.c index 3b775d2949..c650ec7d77 100644 --- a/hw/xbox/lpc47m157.c +++ b/hw/xbox/lpc47m157.c @@ -196,7 +196,7 @@ static void lpc47m157_realize(DeviceState *dev, Error **errp) if (chr == NULL) { char name[5]; snprintf(name, sizeof(name), "ser%d", i); - chr = qemu_chr_new(name, "null"); + chr = qemu_chr_new(name, "null", NULL); } SerialState *ss = &s->serial[i].state;