|
@@ -1453,6 +1453,9 @@ static unsigned int uvc_endpoint_max_bpi(struct usb_device *dev,
|
|
case USB_SPEED_HIGH:
|
|
case USB_SPEED_HIGH:
|
|
psize = usb_endpoint_maxp(&ep->desc);
|
|
psize = usb_endpoint_maxp(&ep->desc);
|
|
return (psize & 0x07ff) * (1 + ((psize >> 11) & 3));
|
|
return (psize & 0x07ff) * (1 + ((psize >> 11) & 3));
|
|
|
|
+ case USB_SPEED_WIRELESS:
|
|
|
|
+ psize = usb_endpoint_maxp(&ep->desc);
|
|
|
|
+ return psize;
|
|
default:
|
|
default:
|
|
psize = usb_endpoint_maxp(&ep->desc);
|
|
psize = usb_endpoint_maxp(&ep->desc);
|
|
return psize & 0x07ff;
|
|
return psize & 0x07ff;
|