diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2017-01-04 19:51:46 +0100 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2017-06-02 11:33:52 +0400 |
commit | 221e659c3f37251b4312e0ac8ccf7799c67600b0 (patch) | |
tree | 608363975ecdd313b9c53b7aa3143cce4dd5909d /chardev/char-serial.c | |
parent | 6ce8e0eb587782e26a05a57134529cc598febd56 (diff) |
char-win: rename win_chr_init/poll win_chr_serial_init/poll
Those 2 functions are specific to serial chardev, make it more clear.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'chardev/char-serial.c')
-rw-r--r-- | chardev/char-serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chardev/char-serial.c b/chardev/char-serial.c index 094e08dca5..fef3a91c77 100644 --- a/chardev/char-serial.c +++ b/chardev/char-serial.c @@ -45,7 +45,7 @@ static void qmp_chardev_open_serial(Chardev *chr, { ChardevHostdev *serial = backend->u.serial.data; - win_chr_init(chr, serial->device, errp); + win_chr_serial_init(chr, serial->device, errp); } #elif defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \ |