9
0
Fork 0

USB: gadget: dfu: Add max_speed to dfu_driver

The MUSB driver checks for this field. If it doesn't contain
something useful the driver bails out.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2014-09-25 11:37:29 +02:00
parent bab50309e7
commit b1536a3298
1 changed files with 1 additions and 0 deletions

View File

@ -722,6 +722,7 @@ static struct usb_composite_driver dfu_driver = {
.name = "g_dfu",
.dev = &dfu_dev_descriptor,
.strings = dev_strings,
.max_speed = USB_SPEED_HIGH,
.bind = dfu_driver_bind,
.unbind = dfu_driver_unbind,
};