diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2008-12-05 01:37:52 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-12-29 12:24:32 -0500 |
commit | 4d3fef9e69ac002f7531c377970449d1154fe884 (patch) | |
tree | 28d0c87dc161d09e98932c4c254fbe89fbff7a4c /drivers | |
parent | ccc607f6d29def18a4c2a4aab31435a784754a64 (diff) |
[SCSI] scsi_transport_spi: fix the misuse of scsi_execute return value
[jejb: fix rejections]
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/scsi_transport_spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/scsi_transport_spi.c b/drivers/scsi/scsi_transport_spi.c index 96361aa70906..f49f55c6bfc8 100644 --- a/drivers/scsi/scsi_transport_spi.c +++ b/drivers/scsi/scsi_transport_spi.c | |||
@@ -113,7 +113,7 @@ static int spi_execute(struct scsi_device *sdev, const void *cmd, | |||
113 | REQ_FAILFAST_TRANSPORT | | 113 | REQ_FAILFAST_TRANSPORT | |
114 | REQ_FAILFAST_DRIVER, | 114 | REQ_FAILFAST_DRIVER, |
115 | NULL); | 115 | NULL); |
116 | if (result & DRIVER_SENSE) { | 116 | if (driver_byte(result) & DRIVER_SENSE) { |
117 | struct scsi_sense_hdr sshdr_tmp; | 117 | struct scsi_sense_hdr sshdr_tmp; |
118 | if (!sshdr) | 118 | if (!sshdr) |
119 | sshdr = &sshdr_tmp; | 119 | sshdr = &sshdr_tmp; |