diff options
author | Hans de Goede <hdegoede@redhat.com> | 2013-03-26 11:07:53 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-03-27 10:26:48 -0500 |
commit | 16665b943b23e953220df257e7e04e669aa384d5 (patch) | |
tree | df22dd6b0c7d6693305b20939ec000f41ce1bf42 /hw | |
parent | 99835e00849369bab726a4dc4ceed1f6f9ed967c (diff) |
qemu-char: Rename opened to be_open
Rename the opened variable to be_open to reflect that it contains the
opened state of the backend.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Message-id: 1364292483-16564-2-git-send-email-hdegoede@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/usb/dev-serial.c | 2 | ||||
-rw-r--r-- | hw/usb/redirect.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hw/usb/dev-serial.c b/hw/usb/dev-serial.c index 47ac8c9b69..7c314dc59d 100644 --- a/hw/usb/dev-serial.c +++ b/hw/usb/dev-serial.c @@ -495,7 +495,7 @@ static int usb_serial_initfn(USBDevice *dev) usb_serial_event, s); usb_serial_handle_reset(dev); - if (s->cs->opened && !dev->attached) { + if (s->cs->be_open && !dev->attached) { usb_device_attach(dev); } return 0; diff --git a/hw/usb/redirect.c b/hw/usb/redirect.c index c519b9b92a..9734e426ec 100644 --- a/hw/usb/redirect.c +++ b/hw/usb/redirect.c @@ -258,7 +258,7 @@ static int usbredir_write(void *priv, uint8_t *data, int count) { USBRedirDevice *dev = priv; - if (!dev->cs->opened) { + if (!dev->cs->be_open) { return 0; } |