diff options
author | Paul Zimmerman <Paul.Zimmerman@synopsys.com> | 2011-06-27 17:13:18 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2011-07-08 06:55:30 -0400 |
commit | 04617db7aa688598ebd3fce20691d31a5e778b45 (patch) | |
tree | 101ac8a5892c1fb6e9aefe2a4acffc666ace3089 /drivers/usb/gadget/ether.c | |
parent | 96fe53ef5498ba130b2f054f2de38e090ddaa55f (diff) |
usb: gadget: add SS descriptors to Ethernet gadget
Add SuperSpeed descriptors to the Network USB
function drivers.
This has been lightly tested using a Linux host.
I was able to ssh from device to host and host to
device, no obvious problems seen.
Signed-off-by: Paul Zimmerman <paulz@synopsys.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/ether.c')
-rw-r--r-- | drivers/usb/gadget/ether.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/ether.c b/drivers/usb/gadget/ether.c index ac41858800a5..aafc84f33e26 100644 --- a/drivers/usb/gadget/ether.c +++ b/drivers/usb/gadget/ether.c | |||
@@ -401,7 +401,7 @@ static struct usb_composite_driver eth_driver = { | |||
401 | .name = "g_ether", | 401 | .name = "g_ether", |
402 | .dev = &device_desc, | 402 | .dev = &device_desc, |
403 | .strings = dev_strings, | 403 | .strings = dev_strings, |
404 | .max_speed = USB_SPEED_HIGH, | 404 | .max_speed = USB_SPEED_SUPER, |
405 | .unbind = __exit_p(eth_unbind), | 405 | .unbind = __exit_p(eth_unbind), |
406 | }; | 406 | }; |
407 | 407 | ||