diff options
author | Chunfeng Yun <chunfeng.yun@mediatek.com> | 2020-10-14 15:08:27 +0800 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2020-10-20 00:49:05 +0200 |
commit | a4de6e380fd1078c3f06210a0be0f3f8a69062dc (patch) | |
tree | 1064e9375e79ec7e935dc122003c8edced5b9a6d /drivers/usb/common/common.c | |
parent | 78fe97b96eef0dc2c4bf16adb427242611e1f813 (diff) | |
download | u-boot-a4de6e380fd1078c3f06210a0be0f3f8a69062dc.tar.gz |
usb: add USB_SPEED_SUPER_PLUS
Add enum USB_SPEED_SUPER_PLUS for USB3.1
Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/usb/common/common.c')
-rw-r--r-- | drivers/usb/common/common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/common/common.c b/drivers/usb/common/common.c index d4ae18693c..76f5a9ce60 100644 --- a/drivers/usb/common/common.c +++ b/drivers/usb/common/common.c @@ -46,6 +46,7 @@ static const char *const speed_names[] = { [USB_SPEED_HIGH] = "high-speed", [USB_SPEED_WIRELESS] = "wireless", [USB_SPEED_SUPER] = "super-speed", + [USB_SPEED_SUPER_PLUS] = "super-speed-plus", }; enum usb_device_speed usb_get_maximum_speed(ofnode node) |