Commit bb27bc2c authored by Ming Lei's avatar Ming Lei Committed by Greg Kroah-Hartman

usb: musb: gadget: complete request only if data is transfered over

Complete the current request only if the data transfer is over.
Signed-off-by: default avatarMing Lei <tom.leiming@gmail.com>
Cc: David Brownell <dbrownell@users.sourceforge.net>
Cc: Anand Gadiyar <gadiyar@ti.com>
Cc: Mike Frysinger <vapier@gentoo.org>
Cc: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 1018b4e4
...@@ -501,14 +501,14 @@ void musb_g_tx(struct musb *musb, u8 epnum) ...@@ -501,14 +501,14 @@ void musb_g_tx(struct musb *musb, u8 epnum)
request->zero = 0; request->zero = 0;
} }
/* ... or if not, then complete it. */ if (request->actual == request->length) {
musb_g_giveback(musb_ep, request, 0); musb_g_giveback(musb_ep, request, 0);
request = musb_ep->desc ? next_request(musb_ep) : NULL;
request = musb_ep->desc ? next_request(musb_ep) : NULL; if (!request) {
if (!request) { DBG(4, "%s idle now\n",
DBG(4, "%s idle now\n", musb_ep->end_point.name);
musb_ep->end_point.name); return;
return; }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment