Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a8f23b03 authored by Dan Carpenter's avatar Dan Carpenter Committed by James Bottomley
Browse files

[SCSI] wd7000: fix reset handler typo spin_unlock_irq() => spin_lock_irq()



This was introduced back in 2005 at the very start of the git era by:
	df0ae249
	[SCSI] allow sleeping in ->eh_host_reset_handler()

Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@suse.de>
parent 5bbf297c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1587,7 +1587,7 @@ static int wd7000_host_reset(struct scsi_cmnd *SCpnt)
{
	Adapter *host = (Adapter *) SCpnt->device->host->hostdata;

	spin_unlock_irq(SCpnt->device->host->host_lock);
	spin_lock_irq(SCpnt->device->host->host_lock);

	if (wd7000_adapter_reset(host) < 0) {
		spin_unlock_irq(SCpnt->device->host->host_lock);