From 8eb0f56311cbfb62ef21827dc0d1eb89417aaca0 Mon Sep 17 00:00:00 2001 From: "Justin T. Gibbs" Date: Fri, 22 Mar 1996 16:26:26 +0000 Subject: [PATCH] Disable SCSI parity checking until we figure out why the aic78X0 generates them incorrectly in some Wide scenarios. --- sys/i386/scsi/aic7xxx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/i386/scsi/aic7xxx.c b/sys/i386/scsi/aic7xxx.c index 8e48753823be..45658b2c8a4a 100644 --- a/sys/i386/scsi/aic7xxx.c +++ b/sys/i386/scsi/aic7xxx.c @@ -24,7 +24,7 @@ * * commenced: Sun Sep 27 18:14:01 PDT 1992 * - * $Id: aic7xxx.c,v 1.56 1996/03/10 07:11:43 gibbs Exp $ + * $Id: aic7xxx.c,v 1.57 1996/03/11 02:48:41 gibbs Exp $ */ /* * TODO: @@ -1371,7 +1371,7 @@ ahc_init(ahc) * so set those values first */ outb(SCSIID + iobase, ahc->our_id_b); - scsi_conf = inb(SCSICONF + 1 + iobase) & (ENSPCHK|STIMESEL); + scsi_conf = inb(SCSICONF + 1 + iobase) & (/*ENSPCHK|*/STIMESEL); outb(SXFRCTL1 + iobase, scsi_conf|ENSTIMER|ACTNEGEN|STPWEN); outb(SIMODE1 + iobase, ENSELTIMO|ENSCSIRST); if(ahc->type & AHC_ULTRA) @@ -1388,7 +1388,7 @@ ahc_init(ahc) outb(SBLKCTL + iobase, 0); } outb(SCSIID + iobase, ahc->our_id); - scsi_conf = inb(SCSICONF + iobase) & (ENSPCHK|STIMESEL); + scsi_conf = inb(SCSICONF + iobase) & (/*ENSPCHK|*/STIMESEL); outb(SXFRCTL1 + iobase, scsi_conf|ENSTIMER|ACTNEGEN|STPWEN); outb(SIMODE1 + iobase, ENSELTIMO|ENSCSIRST); if(ahc->type & AHC_ULTRA)