diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2011-06-23 17:15:43 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2011-06-23 17:15:55 +0200 |
commit | a7fb71d1b2a992a0c4842f06e2b450889e2442ec (patch) | |
tree | 681d53f844c67b35a5b34dbc7010db6c26f4ae11 | |
parent | c3a90cb120e3b274eb87e65fbdd15d4328e8685f (diff) | |
download | qemu-a7fb71d1b2a992a0c4842f06e2b450889e2442ec.zip |
usb: ignore USB_DT_DEBUG
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r-- | hw/usb-desc.c | 4 | ||||
-rw-r--r-- | hw/usb.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/hw/usb-desc.c b/hw/usb-desc.c index 0b9d351189..bc6858f62f 100644 --- a/hw/usb-desc.c +++ b/hw/usb-desc.c @@ -385,6 +385,10 @@ int usb_desc_get_descriptor(USBDevice *dev, int value, uint8_t *dest, size_t len trace_usb_desc_other_speed_config(dev->addr, index, len, ret); break; + case USB_DT_DEBUG: + /* ignore silently */ + break; + default: fprintf(stderr, "%s: %d unknown type %d (len %zd)\n", __FUNCTION__, dev->addr, type, len); @@ -130,6 +130,7 @@ #define USB_DT_ENDPOINT 0x05 #define USB_DT_DEVICE_QUALIFIER 0x06 #define USB_DT_OTHER_SPEED_CONFIG 0x07 +#define USB_DT_DEBUG 0x0A #define USB_DT_INTERFACE_ASSOC 0x0B #define USB_ENDPOINT_XFER_CONTROL 0 |