diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-24 23:01:58 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-24 23:01:58 +0100 |
commit | baf7a6c72668c3e981bc2b6b0f58d2f1c2a8aa4e (patch) | |
tree | c95cdb2390bebfbe5c752e628664c0f2fc9ffa00 /drivers | |
parent | usb: xhci: apply XHCI_AVOID_BEI quirk to all Intel xHCI controllers (diff) | |
parent | usb: isp1760: fix spin unlock in the error path of isp1760_udc_start (diff) | |
download | linux-baf7a6c72668c3e981bc2b6b0f58d2f1c2a8aa4e.tar.xz linux-baf7a6c72668c3e981bc2b6b0f58d2f1c2a8aa4e.zip |
Merge tag 'fixes-for-v4.0-rc6' of git://git.kernel.org/pub/scm/linux/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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/isp1760/isp1760-udc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/isp1760/isp1760-udc.c b/drivers/usb/isp1760/isp1760-udc.c index f32c292cc868..3fc4fe770253 100644 --- a/drivers/usb/isp1760/isp1760-udc.c +++ b/drivers/usb/isp1760/isp1760-udc.c @@ -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; } |