aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hw/usb-hub.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/usb-hub.c b/hw/usb-hub.c
index fd916128cf..ec51ad9297 100644
--- a/hw/usb-hub.c
+++ b/hw/usb-hub.c
@@ -152,7 +152,7 @@ static const uint8_t qemu_hub_config_descriptor[] = {
static const uint8_t qemu_hub_hub_descriptor[] =
{
- 0x09, /* u8 bLength; */
+ 0x00, /* u8 bLength; patched in later */
0x29, /* u8 bDescriptorType; Hub-descriptor */
0x00, /* u8 bNbrPorts; (patched later) */
0x0a, /* u16 wHubCharacteristics; */
@@ -417,6 +417,7 @@ static int usb_hub_handle_control(USBDevice *dev, int request, int value,
}
ret = sizeof(qemu_hub_hub_descriptor) + var_hub_size;
+ data[0] = ret;
break;
}
default: