Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pci Print the usual interrupt line.



details:   https://anonhg.NetBSD.org/src/rev/b9af3f35fb31
branches:  trunk
changeset: 485800:b9af3f35fb31
user:      soren <soren%NetBSD.org@localhost>
date:      Sat May 06 00:46:19 2000 +0000

description:
Print the usual interrupt line.

diffstat:

 sys/dev/pci/siop_pci.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r cad4727f5c47 -r b9af3f35fb31 sys/dev/pci/siop_pci.c
--- a/sys/dev/pci/siop_pci.c    Sat May 06 00:44:00 2000 +0000
+++ b/sys/dev/pci/siop_pci.c    Sat May 06 00:46:19 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: siop_pci.c,v 1.4 2000/05/02 19:03:04 bouyer Exp $      */
+/*     $NetBSD: siop_pci.c,v 1.5 2000/05/06 00:46:19 soren Exp $       */
 
 /*
  * Copyright (c) 2000 Manuel Bouyer.
@@ -253,7 +253,7 @@
        }
        if (pci_intr_map(pa->pa_pc, pa->pa_intrtag, pa->pa_intrpin,
            pa->pa_intrline, &intrhandle) != 0) {
-               printf("%s: couldn't map native-PCI interrupt\n",
+               printf("%s: couldn't map interrupt\n",
                    sc->siop.sc_dev.dv_xname);
                return;
        }
@@ -261,7 +261,7 @@
        sc->sc_ih = pci_intr_establish(pa->pa_pc, intrhandle, IPL_BIO,
            siop_intr, &sc->siop);
        if (sc->sc_ih != NULL) {
-               printf("%s: using %s for native-PCI interrupt\n",
+               printf("%s: interrupting at %s\n",
                    sc->siop.sc_dev.dv_xname,
                    intrstr ? intrstr : "unknown interrupt");
        } else {



Home | Main Index | Thread Index | Old Index