diff options
author | Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> | 2011-09-30 07:07:08 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2011-10-13 13:38:36 -0400 |
commit | 0a85577627fc81936d3dbdfb349964024adcb01d (patch) | |
tree | f4a7189feb16fbd28c7dbe73a857020976598433 /drivers/usb/gadget/r8a66597-udc.c | |
parent | 276532ba9666b36974cbe16f303fc8be99c9da17 (diff) |
usb: gadget: r8a66597-udc: change prototype of r8a66597_write_fifo
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/r8a66597-udc.c')
-rw-r--r-- | drivers/usb/gadget/r8a66597-udc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/gadget/r8a66597-udc.c b/drivers/usb/gadget/r8a66597-udc.c index d3f81c96cd78..60c62e418f0e 100644 --- a/drivers/usb/gadget/r8a66597-udc.c +++ b/drivers/usb/gadget/r8a66597-udc.c | |||
@@ -723,7 +723,7 @@ static void irq_ep0_write(struct r8a66597_ep *ep, struct r8a66597_request *req) | |||
723 | /* write fifo */ | 723 | /* write fifo */ |
724 | if (req->req.buf) { | 724 | if (req->req.buf) { |
725 | if (size > 0) | 725 | if (size > 0) |
726 | r8a66597_write_fifo(r8a66597, ep->fifoaddr, buf, size); | 726 | r8a66597_write_fifo(r8a66597, ep, buf, size); |
727 | if ((size == 0) || ((size % ep->ep.maxpacket) != 0)) | 727 | if ((size == 0) || ((size % ep->ep.maxpacket) != 0)) |
728 | r8a66597_bset(r8a66597, BVAL, ep->fifoctr); | 728 | r8a66597_bset(r8a66597, BVAL, ep->fifoctr); |
729 | } | 729 | } |
@@ -770,7 +770,7 @@ static void irq_packet_write(struct r8a66597_ep *ep, | |||
770 | 770 | ||
771 | /* write fifo */ | 771 | /* write fifo */ |
772 | if (req->req.buf) { | 772 | if (req->req.buf) { |
773 | r8a66597_write_fifo(r8a66597, ep->fifoaddr, buf, size); | 773 | r8a66597_write_fifo(r8a66597, ep, buf, size); |
774 | if ((size == 0) | 774 | if ((size == 0) |
775 | || ((size % ep->ep.maxpacket) != 0) | 775 | || ((size % ep->ep.maxpacket) != 0) |
776 | || ((bufsize != ep->ep.maxpacket) | 776 | || ((bufsize != ep->ep.maxpacket) |