From 6cad95fe97dc062d0367da125ac0b2e5f1694b23 Mon Sep 17 00:00:00 2001 From: Stefan Richter Date: Sun, 21 Jan 2007 20:46:45 +0100 Subject: [PATCH] firewire: fix failure path in ohci_enable_phys_dma MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "goto out" happens with the lock taken. Signed-off-by: Stefan Richter Signed-off-by: Kristian Høgsberg --- drivers/firewire/fw-ohci.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/firewire/fw-ohci.c b/drivers/firewire/fw-ohci.c index ea52e150a8e6..1b4b53d6d925 100644 --- a/drivers/firewire/fw-ohci.c +++ b/drivers/firewire/fw-ohci.c @@ -850,10 +850,8 @@ ohci_enable_phys_dma(struct fw_card *card, int node_id, int generation) 1 << (node_id - 32)); } flush_writes(ohci); - - spin_unlock_irqrestore(&ohci->lock, flags); - out: + spin_unlock_irqrestore(&ohci->lock, flags); return retval; }