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

Commit 96edebd6 authored by Finn Thain's avatar Finn Thain Committed by Martin K. Petersen
Browse files

scsi: NCR5380: Return false instead of NULL



I overlooked this statement when I recently converted the function result
type from struct scsi_cmnd * to bool. No change to object code.

Signed-off-by: default avatarFinn Thain <fthain@telegraphics.com.au>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 0d52e642
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1198,7 +1198,7 @@ static bool NCR5380_select(struct Scsi_Host *instance, struct scsi_cmnd *cmd)

out:
	if (!hostdata->selecting)
		return NULL;
		return false;
	hostdata->selecting = NULL;
	return ret;
}