diff options
author | Robert Baldyga <r.baldyga@samsung.com> | 2013-10-02 11:17:29 +0200 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-10-04 09:44:51 -0500 |
commit | 13613c133bb8dc70ec404b61345496ba75611dbd (patch) | |
tree | 1dfcd3f73f6431d01e328a0aa9338280051fa13d /drivers/usb/gadget/s3c-hsotg.c | |
parent | 4662e5ef54f01ff5333474a825f90ab74f95bc3d (diff) | |
download | linux-13613c133bb8dc70ec404b61345496ba75611dbd.tar.gz linux-13613c133bb8dc70ec404b61345496ba75611dbd.tar.bz2 linux-13613c133bb8dc70ec404b61345496ba75611dbd.zip |
usb: gadget: s3c-hsotg: fix maxpacket size
This patch changes ep maxpacket value from 512 to 1024, because it's needed
to handle interupt and isochronous endpoints in high-speed mode. This change
doesn't affect on driver functioning, because fifo size (3072) is still enough
for the maximum transaction payload (3*1024 for high-speed high-bandwidtch
endpoints).
Signed-off-by: Robert Baldyga <r.baldyga@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/s3c-hsotg.c')
-rw-r--r-- | drivers/usb/gadget/s3c-hsotg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/s3c-hsotg.c b/drivers/usb/gadget/s3c-hsotg.c index 24973d71e29a..4691df732c42 100644 --- a/drivers/usb/gadget/s3c-hsotg.c +++ b/drivers/usb/gadget/s3c-hsotg.c @@ -3068,7 +3068,7 @@ static void s3c_hsotg_initep(struct s3c_hsotg *hsotg, hs_ep->parent = hsotg; hs_ep->ep.name = hs_ep->name; - hs_ep->ep.maxpacket = epnum ? 512 : EP0_MPS_LIMIT; + hs_ep->ep.maxpacket = epnum ? 1024 : EP0_MPS_LIMIT; hs_ep->ep.ops = &s3c_hsotg_ep_ops; /* |