From: Alan Stern Date: Tue, 4 Sep 2007 13:53:24 +0000 (-0400) Subject: USB: fix location of statement label in dummy-hcd X-Git-Tag: v2.6.24-rc1~1395^2~47 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=63f991b2871bdb1431e8ff62cae2b7b94b4e5b0c;p=~emulex%2Finfiniband.git USB: fix location of statement label in dummy-hcd This patch (as984) fixes a rather elementary mistake in dummy_hcd. The new statement label should come before the spin_unlock_irqrestore, not after it. Signed-off-by: Alan Stern Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/gadget/dummy_hcd.c b/drivers/usb/gadget/dummy_hcd.c index 58e4d720880..6479a36d6f0 100644 --- a/drivers/usb/gadget/dummy_hcd.c +++ b/drivers/usb/gadget/dummy_hcd.c @@ -1001,8 +1001,8 @@ static int dummy_urb_enqueue ( if (!timer_pending (&dum->timer)) mod_timer (&dum->timer, jiffies + 1); - spin_unlock_irqrestore (&dum->lock, flags); done: + spin_unlock_irqrestore(&dum->lock, flags); return rc; }