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

Commit 036d6184 authored by Mark Haverkamp's avatar Mark Haverkamp Committed by James Bottomley
Browse files

[SCSI] aacraid: Fix adapter open error



This fixes an error on the device open code that allows a non-existent
device to be opened causing later panic problems.

Signed-off-by: default avatarMark Haverkamp <markh@osdl.org>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent bd6ae2f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -450,7 +450,7 @@ static int aac_cfg_open(struct inode *inode, struct file *file)
		}
	}

	return 0;
	return err;
}

/**