diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2011-11-01 13:09:31 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-11-01 13:09:31 -0500 |
| commit | 2ff6458116546ced7ce00cc39423ee30b1477e67 (patch) | |
| tree | d15aa8e6a07862dbea9ad9d6886ad29696fbf9b2 /usb-linux.c | |
| parent | 0ffcb2ca8d7508f0e60035a17f3a8e055a7a1b89 (diff) | |
| parent | 39fba3ada9a9e36a29a40e1acddec0923839c39b (diff) | |
| download | focaccia-qemu-2ff6458116546ced7ce00cc39423ee30b1477e67.tar.gz focaccia-qemu-2ff6458116546ced7ce00cc39423ee30b1477e67.zip | |
Merge remote-tracking branch 'kraxel/usb.29' into staging
Diffstat (limited to 'usb-linux.c')
| -rw-r--r-- | usb-linux.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usb-linux.c b/usb-linux.c index 7d4d1d7bcf..f086d57edb 100644 --- a/usb-linux.c +++ b/usb-linux.c @@ -1349,7 +1349,7 @@ static int usb_host_close(USBHostDevice *dev) { int i; - if (dev->fd == -1 || !dev->dev.attached) { + if (dev->fd == -1) { return -1; } @@ -1367,7 +1367,9 @@ static int usb_host_close(USBHostDevice *dev) } async_complete(dev); dev->closing = 0; - usb_device_detach(&dev->dev); + if (dev->dev.attached) { + usb_device_detach(&dev->dev); + } ioctl(dev->fd, USBDEVFS_RESET); close(dev->fd); dev->fd = -1; |