Browse Source

[SCSI] comment cleanup for spi_execute

Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Christoph Hellwig 20 years ago
parent
commit
f189c5cb8d
1 changed files with 0 additions and 4 deletions
  1. 0 4
      drivers/scsi/scsi_transport_spi.c

+ 0 - 4
drivers/scsi/scsi_transport_spi.c

@@ -106,8 +106,6 @@ static int sprint_frac(char *dest, int value, int denom)
 	return result;
 	return result;
 }
 }
 
 
-/* Modification of scsi_wait_req that will clear UNIT ATTENTION conditions
- * resulting from (likely) bus and device resets */
 static int spi_execute(struct scsi_device *sdev, const void *cmd,
 static int spi_execute(struct scsi_device *sdev, const void *cmd,
 		       enum dma_data_direction dir,
 		       enum dma_data_direction dir,
 		       void *buffer, unsigned bufflen,
 		       void *buffer, unsigned bufflen,
@@ -117,8 +115,6 @@ static int spi_execute(struct scsi_device *sdev, const void *cmd,
 	unsigned char sense[SCSI_SENSE_BUFFERSIZE];
 	unsigned char sense[SCSI_SENSE_BUFFERSIZE];
 
 
 	for(i = 0; i < DV_RETRIES; i++) {
 	for(i = 0; i < DV_RETRIES; i++) {
-
-		/* FIXME: need to set REQ_FAILFAST */
 		result = scsi_execute(sdev, cmd, dir, buffer, bufflen,
 		result = scsi_execute(sdev, cmd, dir, buffer, bufflen,
 				      sense, DV_TIMEOUT, /* retries */ 1,
 				      sense, DV_TIMEOUT, /* retries */ 1,
 				      REQ_FAILFAST);
 				      REQ_FAILFAST);