]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
USB: Gadget: Initialize wMaxPacketSize if not already set
authorJassi Brar <jassi.brar@samsung.com>
Fri, 14 Jan 2011 02:55:53 +0000 (11:55 +0900)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 4 Feb 2011 19:42:52 +0000 (11:42 -0800)
Currently, for ISO and INT, a protocol driver must chose the value for
wMaxPacketSize arbitrarily. The value may be too low, resulting in lesser
than efficient operation or high enough to not work with all UDC drivers.

Take un-initialized wMaxPacketSize as a hint to provide maximum
possible packetsize for the selected endpoint. The protocol may
then choose a value not bigger than that.

Signed-off-by: Jassi Brar <jassi.brar@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/gadget/epautoconf.c

index 8a832488ccdd76cb1c60b577dd4d1e4c6b35c690..9b7360ff5aa70c2992256cda8b1533fa76d7f4b9 100644 (file)
@@ -128,6 +128,13 @@ ep_matches (
                }
        }
 
+       /*
+        * If the protocol driver hasn't yet decided on wMaxPacketSize
+        * and wants to know the maximum possible, provide the info.
+        */
+       if (desc->wMaxPacketSize == 0)
+               desc->wMaxPacketSize = cpu_to_le16(ep->maxpacket);
+
        /* endpoint maxpacket size is an input parameter, except for bulk
         * where it's an output parameter representing the full speed limit.
         * the usb spec fixes high speed bulk maxpacket at 512 bytes.