This is an automatic generated email to let you know that the following patch were queued:
Subject: media: flexcop: allow for modern speeds Author: Oliver Neukum <[email protected]> Date: Tue May 17 14:11:09 2022 +0100 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]> drivers/media/usb/b2c2/flexcop-usb.c | 6 ++++++ 1 file changed, 6 insertions(+) --- 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.");
