Browse Source

[SCSI] mptfusion: Increase scsi-timeouts, similariy to the LSI 4.x driver.

Make SPI timeout 10s the same as SAS

Signed-off-by: Bernd Schubert <bs@q-leap.de>
Acked-by: "Prakash, Sathya" <Sathya.Prakash@lsi.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Bernd Schubert 16 years ago
parent
commit
22ab019b6f
1 changed files with 1 additions and 2 deletions
  1. 1 2
      drivers/message/fusion/mptscsih.c

+ 1 - 2
drivers/message/fusion/mptscsih.c

@@ -1760,10 +1760,9 @@ mptscsih_get_tm_timeout(MPT_ADAPTER *ioc)
 	case FC:
 		return 40;
 	case SAS:
-		return 10;
 	case SPI:
 	default:
-		return 2;
+		return 10;
 	}
 }