Commit 5f9c3a66 authored by Mathias Nyman's avatar Mathias Nyman Committed by Greg Kroah-Hartman

usb: set USB 3.1 roothub device speed to USB_SPEED_SUPER_PLUS

A hcd roothub that supports HCD_USB31 is running at SuperSpeedPlus speed
Signed-off-by: default avatarMathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8a1b2725
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment