From: Robert Baldyga Date: Tue, 24 Sep 2013 09:24:28 +0000 (+0200) Subject: usb: gadget: s3c-hsotg: fix can_write limit for non-periodic endpoints X-Git-Tag: upstream/snapshot3+hdmi~4063^2~22^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=811f33033f9e6a00756e38990d82214c8c619f4c;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git usb: gadget: s3c-hsotg: fix can_write limit for non-periodic endpoints Value of can_write variable in s3c_hsotg_write_fifo function should be limited to 512 only for non-periodic endpoints. There was some discrepancy between comment and code, becouse comment suggests correct behavior, but in the code limit was applied to periodic endpoints too. So there is additional check causing the limitation concerns only non-periodic endpoints. Signed-off-by: Robert Baldyga Signed-off-by: Kyungmin Park Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/gadget/s3c-hsotg.c b/drivers/usb/gadget/s3c-hsotg.c index a9cae1f..9875d9c 100644 --- a/drivers/usb/gadget/s3c-hsotg.c +++ b/drivers/usb/gadget/s3c-hsotg.c @@ -552,7 +552,7 @@ static int s3c_hsotg_write_fifo(struct s3c_hsotg *hsotg, * FIFO, requests of >512 cause the endpoint to get stuck with a * fragment of the end of the transfer in it. */ - if (can_write > 512) + if (can_write > 512 && !periodic) can_write = 512; /*