projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a1b272
)
usb: set USB 3.1 roothub device speed to USB_SPEED_SUPER_PLUS
author
Mathias Nyman
<mathias.nyman@linux.intel.com>
Thu, 10 Dec 2015 07:59:26 +0000
(09:59 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 25 Jan 2016 04:16:52 +0000
(20:16 -0800)
A hcd roothub that supports HCD_USB31 is running at SuperSpeedPlus speed
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/core/hcd.c
patch
|
blob
|
history
diff --git
a/drivers/usb/core/hcd.c
b/drivers/usb/core/hcd.c
index 0e38ce60d7d52e063c73ee10da80ab1e376011b8..ff3073d522a8684db7e9df4cf81eb4a1236a11d6 100644
(file)
--- a/
drivers/usb/core/hcd.c
+++ b/
drivers/usb/core/hcd.c
@@
-2778,9
+2778,11
@@
int usb_add_hcd(struct usb_hcd *hcd,
rhdev->speed = USB_SPEED_WIRELESS;
break;
case HCD_USB3:
- case HCD_USB31:
rhdev->speed = USB_SPEED_SUPER;
break;
+ case HCD_USB31:
+ rhdev->speed = USB_SPEED_SUPER_PLUS;
+ break;
default:
retval = -EINVAL;
goto err_set_rh_speed;