This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: uvcvideo: Simplify uvc_endpoint_max_bpi()
Author:  Ricardo Ribalda <[email protected]>
Date:    Fri Apr 1 19:24:36 2022 +0200

The case USB_SPEED_WIRELESS and the default one were doing the same.

Also, make always use of usb_endpoint_maxp_mult, as it should have a
sane value, even for LOW speed and WIRELESS.

Signed-off-by: Ricardo Ribalda <[email protected]>
Signed-off-by: Laurent Pinchart <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/usb/uvc/uvc_video.c | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

---

diff --git a/drivers/media/usb/uvc/uvc_video.c 
b/drivers/media/usb/uvc/uvc_video.c
index e016f88bdf96..6712982abafb 100644
--- a/drivers/media/usb/uvc/uvc_video.c
+++ b/drivers/media/usb/uvc/uvc_video.c
@@ -1758,21 +1758,14 @@ static unsigned int uvc_endpoint_max_bpi(struct 
usb_device *dev,
                                         struct usb_host_endpoint *ep)
 {
        u16 psize;
-       u16 mult;
 
        switch (dev->speed) {
        case USB_SPEED_SUPER:
        case USB_SPEED_SUPER_PLUS:
                return le16_to_cpu(ep->ss_ep_comp.wBytesPerInterval);
-       case USB_SPEED_HIGH:
-               psize = usb_endpoint_maxp(&ep->desc);
-               mult = usb_endpoint_maxp_mult(&ep->desc);
-               return psize * mult;
-       case USB_SPEED_WIRELESS:
-               psize = usb_endpoint_maxp(&ep->desc);
-               return psize;
        default:
                psize = usb_endpoint_maxp(&ep->desc);
+               psize *= usb_endpoint_maxp_mult(&ep->desc);
                return psize;
        }
 }

_______________________________________________
linuxtv-commits mailing list
[email protected]
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to