Skip to content

Commit

Permalink
Revert "usb: dwc3: gadget: remove unnecessary _irqsave()"
Browse files Browse the repository at this point in the history
This reverts commit 70f3a9c.

That commit was causing a lockdep splat with g_ether and that
was interfering with proper functionality.

Signed-off-by: Felipe Balbi <balbi@ti.com>
  • Loading branch information
Felipe Balbi committed Oct 12, 2015
1 parent 5527e73 commit e5f68b4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/usb/dwc3/gadget.c
Original file line number Diff line number Diff line change
Expand Up @@ -2642,15 +2642,16 @@ static irqreturn_t dwc3_process_event_buf(struct dwc3 *dwc, u32 buf)
static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc)
{
struct dwc3 *dwc = _dwc;
unsigned long flags;
irqreturn_t ret = IRQ_NONE;
int i;

spin_lock(&dwc->lock);
spin_lock_irqsave(&dwc->lock, flags);

for (i = 0; i < dwc->num_event_buffers; i++)
ret |= dwc3_process_event_buf(dwc, i);

spin_unlock(&dwc->lock);
spin_unlock_irqrestore(&dwc->lock, flags);

return ret;
}
Expand Down

0 comments on commit e5f68b4

Please sign in to comment.