From: Oliver Neukum Date: Tue, 17 May 2022 13:11:09 +0000 (+0100) Subject: media: flexcop: allow for modern speeds X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=82fe45f3fbeeb7add918c2c49fbde5b20b780714;p=linux.git 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.com Signed-off-by: Oliver Neukum Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/usb/b2c2/flexcop-usb.c b/drivers/media/usb/b2c2/flexcop-usb.c index 0f807da4b65a3..8f45e9156fbe9 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.");