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>
This commit is contained in:
parent
2964cd9bfa
commit
2bbd086c41
@ -217,7 +217,7 @@ static const USBDescIface desc_iface[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const USBDescDevice desc_device = {
|
static const USBDescDevice desc_device = {
|
||||||
.bcdUSB = 0x0200,
|
.bcdUSB = 0x0100,
|
||||||
.bMaxPacketSize0 = 64,
|
.bMaxPacketSize0 = 64,
|
||||||
.bNumConfigurations = 1,
|
.bNumConfigurations = 1,
|
||||||
.confs = (USBDescConfig[]) {
|
.confs = (USBDescConfig[]) {
|
||||||
|
Loading…
Reference in New Issue
Block a user