diff options
author | Ravi Babu <ravibabu@ti.com> | 2013-04-02 03:52:42 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-04-02 04:42:50 -0400 |
commit | 538bf07d897008e87eca49cde5970545f3814ac7 (patch) | |
tree | bd1e62f349ab838c9f494184f5da9ee199671fff | |
parent | 96449f097e3874af0e8ddd721d3ebeed2ec389da (diff) |
usb: musb: gadget: read ep0 fifo only if rxcount is non zero
avoid reading fifo rxcount is zero of fifo is empty, hence
read fifo only if rxcount is non-zero
Signed-off-by: Ravi Babu <ravibabu@ti.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r-- | drivers/usb/musb/musb_gadget_ep0.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/usb/musb/musb_gadget_ep0.c b/drivers/usb/musb/musb_gadget_ep0.c index c9c1ac4e075f..2af45a0c8930 100644 --- a/drivers/usb/musb/musb_gadget_ep0.c +++ b/drivers/usb/musb/musb_gadget_ep0.c | |||
@@ -505,8 +505,10 @@ static void ep0_rxstate(struct musb *musb) | |||
505 | req->status = -EOVERFLOW; | 505 | req->status = -EOVERFLOW; |
506 | count = len; | 506 | count = len; |
507 | } | 507 | } |
508 | musb_read_fifo(&musb->endpoints[0], count, buf); | 508 | if (count > 0) { |
509 | req->actual += count; | 509 | musb_read_fifo(&musb->endpoints[0], count, buf); |
510 | req->actual += count; | ||
511 | } | ||
510 | csr = MUSB_CSR0_P_SVDRXPKTRDY; | 512 | csr = MUSB_CSR0_P_SVDRXPKTRDY; |
511 | if (count < 64 || req->actual == req->length) { | 513 | if (count < 64 || req->actual == req->length) { |
512 | musb->ep0_state = MUSB_EP0_STAGE_STATUSIN; | 514 | musb->ep0_state = MUSB_EP0_STAGE_STATUSIN; |