33 lines
1000 B
Diff
33 lines
1000 B
Diff
From 3f8a570db1637c0e7e2dd7a3bd997c92c69efc65 Mon Sep 17 00:00:00 2001
|
|
From: Gerd Hoffmann <kraxel@redhat.com>
|
|
Date: Tue, 28 Aug 2012 16:43:34 +0200
|
|
Subject: [PATCH] usb-audio: fix usb version
|
|
|
|
usb-audio is a full speed (1.1) device,
|
|
but bcdUSB claims it is usb 2.0. Fix it.
|
|
|
|
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
(cherry picked from commit 2bbd086c41a00dc4384727ec895a94890c688eb5)
|
|
|
|
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
|
|
---
|
|
hw/usb/dev-audio.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/hw/usb/dev-audio.c b/hw/usb/dev-audio.c
|
|
index 79b75fb..2594c78 100644
|
|
--- a/hw/usb/dev-audio.c
|
|
+++ b/hw/usb/dev-audio.c
|
|
@@ -217,7 +217,7 @@ static const USBDescIface desc_iface[] = {
|
|
};
|
|
|
|
static const USBDescDevice desc_device = {
|
|
- .bcdUSB = 0x0200,
|
|
+ .bcdUSB = 0x0100,
|
|
.bMaxPacketSize0 = 64,
|
|
.bNumConfigurations = 1,
|
|
.confs = (USBDescConfig[]) {
|
|
--
|
|
1.7.12.1
|
|
|