Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/sys/dev/ic Pull up revision 1.90 (requested by abs in t...



details:   https://anonhg.NetBSD.org/src/rev/40c4e68d6e36
branches:  netbsd-1-6
changeset: 529056:40c4e68d6e36
user:      lukem <lukem%NetBSD.org@localhost>
date:      Sun Sep 01 13:57:49 2002 +0000

description:
Pull up revision 1.90 (requested by abs in ticket #751):
Fix AHC_NO_TAGS to actually disable tagged queuing, and document.

diffstat:

 sys/dev/ic/aic7xxx.c |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (34 lines):

diff -r e9d20c6dbbca -r 40c4e68d6e36 sys/dev/ic/aic7xxx.c
--- a/sys/dev/ic/aic7xxx.c      Sun Sep 01 13:56:58 2002 +0000
+++ b/sys/dev/ic/aic7xxx.c      Sun Sep 01 13:57:49 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: aic7xxx.c,v 1.88 2002/04/05 18:27:50 bouyer Exp $      */
+/*     $NetBSD: aic7xxx.c,v 1.88.4.1 2002/09/01 13:57:49 lukem Exp $   */
 
 /*
  * Generic driver for the aic7xxx based adaptec SCSI controllers
@@ -88,7 +88,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aic7xxx.c,v 1.88 2002/04/05 18:27:50 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aic7xxx.c,v 1.88.4.1 2002/09/01 13:57:49 lukem Exp $");
 
 #include "opt_ddb.h"
 #include "opt_ahc.h"
@@ -1330,6 +1330,7 @@
 static void
 ahc_set_tags(struct ahc_softc *ahc, struct ahc_devinfo *devinfo, int enable)
 {
+#ifndef AHC_NO_TAGS
        struct ahc_initiator_tinfo *tinfo;
        struct tmode_tstate *tstate;
 
@@ -1342,6 +1343,7 @@
                tstate->tagenable &= ~devinfo->target_mask;
                tstate->tagdisable |= devinfo->target_mask;
        }
+#endif
 }
 
 static void



Home | Main Index | Thread Index | Old Index