Browse Source

char: Remove redundant qemu_chr_generic_open() call.

qemu_chr_open_fd() calls qemu_chr_generic_open(),
so qemu_chr_open_tty() doesn't need to call it.

Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
stable-0.13
Kusanagi Kouichi 17 years ago
committed by Anthony Liguori
parent
commit
3b9d7e6621
  1. 1
      qemu-char.c

1
qemu-char.c

@ -1187,7 +1187,6 @@ static CharDriverState *qemu_chr_open_tty(QemuOpts *opts)
return NULL;
}
chr->chr_ioctl = tty_serial_ioctl;
qemu_chr_generic_open(chr);
return chr;
}
#else /* ! __linux__ && ! __sun__ */

Loading…
Cancel
Save