Merge remote-tracking branch 'kraxel/usb.29' into staging

This commit is contained in:
Anthony Liguori 2011-11-01 13:09:31 -05:00
commit 2ff6458116
3 changed files with 9 additions and 6 deletions

View file

@ -127,8 +127,8 @@ static const USBDescDevice desc_device_hub = {
static const USBDesc desc_hub = {
.id = {
.idVendor = 0,
.idProduct = 0,
.idVendor = 0x0409,
.idProduct = 0x55aa,
.bcdDevice = 0x0101,
.iManufacturer = STR_MANUFACTURER,
.iProduct = STR_PRODUCT,
@ -163,6 +163,7 @@ static void usb_hub_attach(USBPort *port1)
} else {
port->wPortStatus &= ~PORT_STAT_LOW_SPEED;
}
usb_wakeup(&s->dev);
}
static void usb_hub_detach(USBPort *port1)

View file

@ -162,8 +162,8 @@ static const USBDescDevice desc_device_high = {
static const USBDesc desc = {
.id = {
.idVendor = 0,
.idProduct = 0,
.idVendor = 0x46f4, /* CRC16() of "QEMU" */
.idProduct = 0x0001,
.bcdDevice = 0,
.iManufacturer = STR_MANUFACTURER,
.iProduct = STR_PRODUCT,

View file

@ -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;