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>
This commit is contained in:
Kusanagi Kouichi 2010-01-15 00:46:24 +09:00 committed by Anthony Liguori
parent 2ebf7c4b82
commit 3b9d7e6621
1 changed files with 0 additions and 1 deletions

View File

@ -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__ */