Source-Changes-HG archive

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

[src/netbsd-1-4]: src/sys/dev/ic Pull up revision 1.24:



details:   https://anonhg.NetBSD.org/src/rev/5608bffa79b5
branches:  netbsd-1-4
changeset: 469364:5608bffa79b5
user:      he <he%NetBSD.org@localhost>
date:      Fri Sep 10 23:08:17 1999 +0000

description:
Pull up revision 1.24:
  Remove a spurious printf() from the interrupt handler which got
  triggered when sharing the interrupt level with other devices.  (pk)

diffstat:

 sys/dev/ic/i82586.c |  9 +--------
 1 files changed, 1 insertions(+), 8 deletions(-)

diffs (30 lines):

diff -r f4f8d8962ac6 -r 5608bffa79b5 sys/dev/ic/i82586.c
--- a/sys/dev/ic/i82586.c       Fri Sep 10 23:02:50 1999 +0000
+++ b/sys/dev/ic/i82586.c       Fri Sep 10 23:08:17 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: i82586.c,v 1.20 1999/02/17 03:41:00 thorpej Exp $      */
+/*     $NetBSD: i82586.c,v 1.20.2.1 1999/09/10 23:08:17 he Exp $       */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -236,8 +236,6 @@
 
 #ifdef I82586_DEBUG
 void           print_rbd       __P((struct ie_softc *, int));
-
-int spurious_intrs = 0;
 #endif
 
 
@@ -622,11 +620,6 @@
        status = sc->ie_bus_read16(sc, off) & IE_ST_WHENCE;
 
        if ((status & IE_ST_WHENCE) == 0) {
-#ifdef I82586_DEBUG
-               if ((spurious_intrs++ % 25) == 0)
-                   printf("%s: i82586_intr: %d spurious interrupts\n",
-                          sc->sc_dev.dv_xname, spurious_intrs);
-#endif
                if (sc->intrhook)
                        (sc->intrhook)(sc, INTR_EXIT);
 



Home | Main Index | Thread Index | Old Index