Skip to content

Commit

Permalink
usb: dwc2: gadget: use ep->fifo_index in context of FIFO registers
Browse files Browse the repository at this point in the history
In context of FIFO registers we use ep->fifo_index instead of ep->index.

Signed-off-by: Robert Baldyga <r.baldyga@samsung.com>
Signed-off-by: John Youn <johnyoun@synopsys.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
  • Loading branch information
Robert Baldyga authored and Felipe Balbi committed Aug 31, 2016
1 parent da7b895 commit ad674a1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/usb/dwc2/gadget.c
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,8 @@ static int dwc2_hsotg_write_fifo(struct dwc2_hsotg *hsotg,
return -ENOSPC;
}
} else if (hsotg->dedicated_fifos && hs_ep->index != 0) {
can_write = dwc2_readl(hsotg->regs + DTXFSTS(hs_ep->index));
can_write = dwc2_readl(hsotg->regs +
DTXFSTS(hs_ep->fifo_index));

can_write &= 0xffff;
can_write *= 4;
Expand Down Expand Up @@ -2432,7 +2433,7 @@ static void kill_all_requests(struct dwc2_hsotg *hsotg,

if (!hsotg->dedicated_fifos)
return;
size = (dwc2_readl(hsotg->regs + DTXFSTS(ep->index)) & 0xffff) * 4;
size = (dwc2_readl(hsotg->regs + DTXFSTS(ep->fifo_index)) & 0xffff) * 4;
if (size < ep->fifo_size)
dwc2_hsotg_txfifo_flush(hsotg, ep->fifo_index);
}
Expand Down

0 comments on commit ad674a1

Please sign in to comment.