A tweak to make it negotiate FAST-80. No idea if it's right, but it works. 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 2003-09-26 22:15:19.000000000 -0700 +++ 25-akpm/drivers/scsi/sym53c8xx_2/sym_hipd.c 2003-09-26 22:15:19.000000000 -0700 @@ -838,7 +838,8 @@ static int sym_prepare_setting(hcb_p np, period = parisc_setup_hcb(np, period); - 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; _