<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

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-03-24 02:53:31.000000000 -0800
+++ 25-akpm/drivers/scsi/sym53c8xx_2/sym_hipd.c	2003-03-24 02:53:31.000000000 -0800
@@ -800,7 +800,8 @@ static int sym_prepare_setting(hcb_p np,
 	 * Btw, 'period' is in tenths of nanoseconds.
 	 */
 	period = (4 * div_10M[0] + np-&gt;clock_khz - 1) / np-&gt;clock_khz;
-	if	(period &lt;= 250)		np-&gt;minsync = 10;
+	if	(period == 250)		np-&gt;minsync = 9;
+	else if	(period &lt;= 250)		np-&gt;minsync = 10;
 	else if	(period &lt;= 303)		np-&gt;minsync = 11;
 	else if	(period &lt;= 500)		np-&gt;minsync = 12;
 	else				np-&gt;minsync = (period + 40 - 1) / 40;

_
</pre></body></html>