usb: show speed "10000" in sysfs for USB 3.1 SuperSpeedPlus devices
The same way as SuperSpeed devices show "5000" as device speed we wan't to show "10000" as the default speed for SuperSpeedPlus devices in sysfs. Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
5f9c3a668b
Коммит
b2316645ca
|
@ -141,6 +141,9 @@ static ssize_t speed_show(struct device *dev, struct device_attribute *attr,
|
|||
case USB_SPEED_SUPER:
|
||||
speed = "5000";
|
||||
break;
|
||||
case USB_SPEED_SUPER_PLUS:
|
||||
speed = "10000";
|
||||
break;
|
||||
default:
|
||||
speed = "unknown";
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче