Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/ic Fix bug in non-dma select code i added.



details:   https://anonhg.NetBSD.org/src/rev/de2e674dc3f6
branches:  trunk
changeset: 500029:de2e674dc3f6
user:      eeh <eeh%NetBSD.org@localhost>
date:      Sun Dec 03 23:25:24 2000 +0000

description:
Fix bug in non-dma select code i added.

diffstat:

 sys/dev/ic/ncr53c9x.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r 57f3db9df973 -r de2e674dc3f6 sys/dev/ic/ncr53c9x.c
--- a/sys/dev/ic/ncr53c9x.c     Sun Dec 03 23:15:23 2000 +0000
+++ b/sys/dev/ic/ncr53c9x.c     Sun Dec 03 23:25:24 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ncr53c9x.c,v 1.60 2000/12/01 04:37:54 augustss Exp $   */
+/*     $NetBSD: ncr53c9x.c,v 1.61 2000/12/03 23:25:24 eeh Exp $        */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -717,9 +717,9 @@
 
        /* And get the targets attention */
        if (ecb->tag[0])
-               NCRCMD(sc, NCRCMD_SELATN3 | NCRCMD_DMA);
+               NCRCMD(sc, NCRCMD_SELATN3);
        else
-               NCRCMD(sc, NCRCMD_SELATN | NCRCMD_DMA);
+               NCRCMD(sc, NCRCMD_SELATN);
 }
 
 void
@@ -2692,3 +2692,4 @@
        splx(s);
        callout_reset(&sc->sc_watchdog, 60*hz, ncr53c9x_watch, sc);
 }
+



Home | Main Index | Thread Index | Old Index