A tweak to make it negotiate FAST-80. No idea if it's right, but it works. 25-akpm/drivers/scsi/sym53c8xx_2/sym_hipd.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/scsi/sym53c8xx_2/sym_hipd.c~sym-do-160 drivers/scsi/sym53c8xx_2/sym_hipd.c --- 25/drivers/scsi/sym53c8xx_2/sym_hipd.c~sym-do-160 Thu Sep 4 12:14:08 2003 +++ 25-akpm/drivers/scsi/sym53c8xx_2/sym_hipd.c Thu Sep 4 12:14:46 2003 @@ -831,7 +831,8 @@ static int sym_prepare_setting(hcb_p np, } #endif - if (period <= 250) np->minsync = 10; + if (period == 250) np->minsync = 9; + else if (period <= 250) np->minsync = 10; else if (period <= 303) np->minsync = 11; else if (period <= 500) np->minsync = 12; else np->minsync = (period + 40 - 1) / 40; _