lpc: Update qemu_chr_new call arguments

This commit is contained in:
Matt Borgerson 2019-07-03 23:03:04 -07:00
parent 28dd7de81d
commit fc559b1aed
1 changed files with 1 additions and 1 deletions

View File

@ -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;