Skip to content

Commit

Permalink
Merge tag 'fixes-for-v4.0-rc6' of git://git.kernel.org/pub/scm/linux/…
Browse files Browse the repository at this point in the history
…kernel/git/balbi/usb into usb-linus

Felipe writes:

usb: fix for v4.0-rc6

Here's a single fix to isp1760 calling spin_unlock_irqsave()
as we should have.

Signed-off-by: Felipe Balbi <balbi@ti.com>
  • Loading branch information
Greg Kroah-Hartman committed Mar 24, 2015
2 parents 227a4fd + 65582a7 commit baf7a6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/isp1760/isp1760-udc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ static int isp1760_udc_start(struct usb_gadget *gadget,

if (udc->driver) {
dev_err(udc->isp->dev, "UDC already has a gadget driver\n");
spin_unlock(&udc->lock);
spin_unlock_irqrestore(&udc->lock, flags);
return -EBUSY;
}

Expand Down

0 comments on commit baf7a6c

Please sign in to comment.