aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Neukum <[email protected]>2022-05-17 14:11:09 +0100
committerMauro Carvalho Chehab <[email protected]>2024-04-29 12:08:30 +0100
commit82fe45f3fbeeb7add918c2c49fbde5b20b780714 (patch)
tree6e2da8f51defd552e4916620b8508485fba76720
parentf835f3ea6b1bcb51bc07f9074b71234a7a00d6e0 (diff)
media: flexcop: allow for modern speeds
High speed is no longer the ultimate in speed. Link: https://lore.kernel.org/linux-media/[email protected] Signed-off-by: Oliver Neukum <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r--drivers/media/usb/b2c2/flexcop-usb.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/media/usb/b2c2/flexcop-usb.c b/drivers/media/usb/b2c2/flexcop-usb.c
index 0f807da4b65a..8f45e9156fbe 100644
--- a/drivers/media/usb/b2c2/flexcop-usb.c
+++ b/drivers/media/usb/b2c2/flexcop-usb.c
@@ -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.");