char: rename qemu_chr_open() -> qemu_chr_new()

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Anthony Liguori 2011-08-15 11:17:36 -05:00
parent 15f31519b4
commit 27143a445b
10 changed files with 18 additions and 18 deletions

View file

@ -2764,7 +2764,7 @@ int gdbserver_start(const char *device)
sigaction(SIGINT, &act, NULL);
}
#endif
chr = qemu_chr_open("gdb", device, NULL);
chr = qemu_chr_new("gdb", device, NULL);
if (!chr)
return -1;