diff options
author | Manu Gautam <mgautam@codeaurora.org> | 2017-12-06 12:49:04 +0530 |
---|---|---|
committer | Felipe Balbi <felipe.balbi@linux.intel.com> | 2017-12-11 12:35:37 +0200 |
commit | ec5bb87e4e2a1d3a35563a7bcfac9febf67aba9d (patch) | |
tree | eba2d8dc55581c511fced29619cad2b88e48d493 /drivers/usb/dwc3 | |
parent | a0d8c4cfdf31a9576f683628e50b76714c785ef1 (diff) | |
download | linux-ec5bb87e4e2a1d3a35563a7bcfac9febf67aba9d.tar.gz linux-ec5bb87e4e2a1d3a35563a7bcfac9febf67aba9d.tar.bz2 linux-ec5bb87e4e2a1d3a35563a7bcfac9febf67aba9d.zip |
usb: dwc3: gadget: Fix PCM1 for ISOC EP with ep->mult less than 3
For isochronous endpoints with ep->mult less than 3, PCM1 value of
trb->size in set incorrectly.
For ep->mult = 2, this is set to 0/-1 and for ep->mult = 1, this is
set to -2. This is because the initial mult is set to ep->mult - 1
instead of 2.
Signed-off-by: Manu Gautam <mgautam@codeaurora.org>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'drivers/usb/dwc3')
-rw-r--r-- | drivers/usb/dwc3/gadget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index 01e595bb1ff1..639dd1b163a0 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c @@ -912,7 +912,7 @@ static void __dwc3_prepare_one_trb(struct dwc3_ep *dep, struct dwc3_trb *trb, */ if (speed == USB_SPEED_HIGH) { struct usb_ep *ep = &dep->endpoint; - unsigned int mult = ep->mult - 1; + unsigned int mult = 2; unsigned int maxp = usb_endpoint_maxp(ep->desc); if (length <= (2 * maxp)) |