diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-01-07 11:03:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-01-07 11:03:34 +0000 |
commit | 4e5edf1681a086658e36c0c381226ba0a9868ef7 (patch) | |
tree | 098270bb47f887cef2343726615bd31a5952d17a /sys/dev/pci/ahc_pci.c | |
parent | 63e8c62ef47731e477613e0f788457a4a289dceb (diff) |
now this is really pretty
Diffstat (limited to 'sys/dev/pci/ahc_pci.c')
-rw-r--r-- | sys/dev/pci/ahc_pci.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/ahc_pci.c b/sys/dev/pci/ahc_pci.c index d18c0b7bb6a..dd95b79973b 100644 --- a/sys/dev/pci/ahc_pci.c +++ b/sys/dev/pci/ahc_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahc_pci.c,v 1.8 1998/01/05 13:35:18 deraadt Exp $ */ +/* $OpenBSD: ahc_pci.c,v 1.9 1998/01/07 11:03:25 deraadt Exp $ */ /* $NetBSD: ahc_pci.c,v 1.9 1996/10/21 22:56:24 thorpej Exp $ */ /* @@ -452,7 +452,7 @@ ahc_pci_attach(parent, self, aux) if (pci_intr_map(pa->pa_pc, pa->pa_intrtag, pa->pa_intrpin, pa->pa_intrline, &ih)) { - printf(", couldn't map interrupt\n"); + printf(": couldn't map interrupt\n"); ahc_free(ahc); return; } @@ -464,7 +464,7 @@ ahc_pci_attach(parent, self, aux) ahc->sc_dev.dv_xname); #endif if (ahc->sc_ih == NULL) { - printf(", couldn't establish interrupt"); + printf(": couldn't establish interrupt"); if (intrstr != NULL) printf(" at %s", intrstr); printf("\n"); @@ -472,7 +472,7 @@ ahc_pci_attach(parent, self, aux) return; } if (intrstr != NULL) - printf(", %s\n", intrstr); + printf(": %s\n", intrstr); #endif /* * Protect ourself from spurrious interrupts during |