[patch] spi: release lock on error path in spi_pump_messages()

From: Dan Carpenter
Date: Sat Mar 10 2012 - 03:57:54 EST


We should release the lock here and enable IRQs before returning.

Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx>

diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index 5ae1e84..ab1bdce 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -535,6 +535,7 @@ static void spi_pump_messages(struct kthread_work *work)
if (ret) {
dev_err(&master->dev,
"failed to unprepare transfer hardware\n");
+ spin_unlock_irqrestore(&master->queue_lock, flags);
return;
}
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/