Author: hselasky
Date: Tue Jun  9 22:15:45 2020
New Revision: 361989
URL: https://svnweb.freebsd.org/changeset/base/361989

Log:
  Adapt merge of r361581 to 9-stable to unbreak kernel compilation.
  
  This is a direct commit.
  
  Sponsored by: Mellanox Technologies

Modified:
  stable/9/sys/dev/usb/usb_transfer.c

Modified: stable/9/sys/dev/usb/usb_transfer.c
==============================================================================
--- stable/9/sys/dev/usb/usb_transfer.c Tue Jun  9 21:59:13 2020        
(r361988)
+++ stable/9/sys/dev/usb/usb_transfer.c Tue Jun  9 22:15:45 2020        
(r361989)
@@ -354,8 +354,7 @@ usbd_get_max_frame_length(const struct usb_endpoint_de
                        if (ecomp != NULL) {
                                uint8_t mult;
 
-                               mult = UE_GET_SS_ISO_MULT(
-                                   ecomp->bmAttributes) + 1;
+                               mult = (ecomp->bmAttributes & 3) + 1;
                                if (mult > 3)
                                        mult = 3;
 
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to