Commit 82fe45f3 authored by Oliver Neukum's avatar Oliver Neukum Committed by Mauro Carvalho Chehab

media: flexcop: allow for modern speeds

High speed is no longer the ultimate in speed.

Link: https://lore.kernel.org/linux-media/20220517131109.28371-2-oneukum@suse.comSigned-off-by: default avatarOliver Neukum <oneukum@suse.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent f835f3ea
......@@ -531,6 +531,12 @@ static int flexcop_usb_init(struct flexcop_usb *fc_usb)
case USB_SPEED_HIGH:
info("running at HIGH speed.");
break;
case USB_SPEED_SUPER:
info("running at SUPER speed.");
break;
case USB_SPEED_SUPER_PLUS:
info("running at SUPER+ speed.");
break;
case USB_SPEED_UNKNOWN:
default:
err("cannot handle USB speed because it is unknown.");
......
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