USB: use usb_endpoint_maxp() instead of le16_to_cpu()
[pandora-kernel.git] / drivers / usb / gadget / dummy_hcd.c
index e755a9d..7b06d39 100644 (file)
@@ -439,7 +439,7 @@ dummy_enable (struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
         * maximum packet size.
         * For SS devices the wMaxPacketSize is limited by 1024.
         */
-       max = le16_to_cpu(desc->wMaxPacketSize) & 0x7ff;
+       max = usb_endpoint_maxp(desc) & 0x7ff;
 
        /* drivers must not request bad settings, since lower levels
         * (hardware or its drivers) may not check.  some endpoints
@@ -1277,7 +1277,7 @@ static int periodic_bytes (struct dummy *dum, struct dummy_ep *ep)
                int     tmp;
 
                /* high bandwidth mode */
-               tmp = le16_to_cpu(ep->desc->wMaxPacketSize);
+               tmp = usb_endpoint_maxp(ep->desc);
                tmp = (tmp >> 11) & 0x03;
                tmp *= 8 /* applies to entire frame */;
                limit += limit * tmp;