summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/dev/pci/hifn7751.c4
-rw-r--r--sys/dev/pci/if_en_pci.c4
-rw-r--r--sys/dev/pci/ubsec.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/pci/hifn7751.c b/sys/dev/pci/hifn7751.c
index 4f3e42d4942..273542dec31 100644
--- a/sys/dev/pci/hifn7751.c
+++ b/sys/dev/pci/hifn7751.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hifn7751.c,v 1.56 2001/03/28 20:02:59 angelos Exp $ */
+/* $OpenBSD: hifn7751.c,v 1.57 2001/04/06 16:27:46 jason Exp $ */
/*
* Invertex AEON / Hi/fn 7751 driver
@@ -247,7 +247,7 @@ hifn_attach(parent, self, aux)
sc->sc_ih = pci_intr_establish(pc, ih, IPL_NET, hifn_intr, sc,
self->dv_xname);
if (sc->sc_ih == NULL) {
- printf(": couldn't establish interrupt\n");
+ printf(": couldn't establish interrupt");
if (intrstr != NULL)
printf(" at %s", intrstr);
printf("\n");
diff --git a/sys/dev/pci/if_en_pci.c b/sys/dev/pci/if_en_pci.c
index 6a7cc8c9e18..5a4ad306a17 100644
--- a/sys/dev/pci/if_en_pci.c
+++ b/sys/dev/pci/if_en_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_en_pci.c,v 1.6 1998/01/07 11:03:27 deraadt Exp $ */
+/* $OpenBSD: if_en_pci.c,v 1.7 2001/04/06 16:27:45 jason Exp $ */
/*
*
@@ -221,7 +221,7 @@ void *aux;
scp->sc_ih = pci_intr_establish(scp->en_pc, ih, IPL_NET, en_intr, sc,
sc->sc_dev.dv_xname);
if (scp->sc_ih == NULL) {
- printf(": couldn't establish interrupt\n");
+ printf(": couldn't establish interrupt");
if (intrstr != NULL)
printf(" at %s", intrstr);
printf("\n");
diff --git a/sys/dev/pci/ubsec.c b/sys/dev/pci/ubsec.c
index 8a1342008b8..a93de2d5a65 100644
--- a/sys/dev/pci/ubsec.c
+++ b/sys/dev/pci/ubsec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ubsec.c,v 1.42 2001/03/28 20:03:00 angelos Exp $ */
+/* $OpenBSD: ubsec.c,v 1.43 2001/04/06 16:27:45 jason Exp $ */
/*
* Copyright (c) 2000 Jason L. Wright (jason@thought.net)
@@ -173,7 +173,7 @@ ubsec_attach(parent, self, aux)
sc->sc_ih = pci_intr_establish(pc, ih, IPL_NET, ubsec_intr, sc,
self->dv_xname);
if (sc->sc_ih == NULL) {
- printf(": couldn't establish interrupt\n");
+ printf(": couldn't establish interrupt");
if (intrstr != NULL)
printf(" at %s", intrstr);
printf("\n");