|
@@ -2836,8 +2836,6 @@ static irqreturn_t dwc3_process_event_buf(struct dwc3_event_buffer *evt)
|
|
|
*/
|
|
|
evt->lpos = (evt->lpos + 4) % evt->length;
|
|
|
left -= 4;
|
|
|
-
|
|
|
- dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), 4);
|
|
|
}
|
|
|
|
|
|
evt->count = 0;
|
|
@@ -2899,6 +2897,8 @@ static irqreturn_t dwc3_check_event_buf(struct dwc3_event_buffer *evt)
|
|
|
if (amount < count)
|
|
|
memcpy(evt->cache, evt->buf, count - amount);
|
|
|
|
|
|
+ dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count);
|
|
|
+
|
|
|
return IRQ_WAKE_THREAD;
|
|
|
}
|
|
|
|