diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-13 07:43:37 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-06-13 07:43:37 +0000 |
commit | 4e74bda32bc9fc6b85dccf35b7965d9762bfbcaf (patch) | |
tree | e90d43fc2358786f3a9744b213ae008a3f070998 /sys/dev/pci | |
parent | b0c6ae26fdff6d337b88ed8152990a6cbb73f08d (diff) |
dmesg cleanup
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/ohci_pci.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/pci/ohci_pci.c b/sys/dev/pci/ohci_pci.c index b4fbe0867c7..4292d75d0a0 100644 --- a/sys/dev/pci/ohci_pci.c +++ b/sys/dev/pci/ohci_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ohci_pci.c,v 1.11 2001/06/12 19:11:59 mickey Exp $ */ +/* $OpenBSD: ohci_pci.c,v 1.12 2001/06/13 07:43:35 deraadt Exp $ */ /* $NetBSD: ohci_pci.c,v 1.9 1999/05/20 09:52:35 augustss Exp $ */ /* @@ -149,11 +149,12 @@ ohci_pci_attach(parent, self, aux) printf("\n"); return; } - printf(": %s\n", intrstr); + printf(": %s", intrstr); r = ohci_init(&sc->sc); if (r != USBD_NORMAL_COMPLETION) { - printf(": init failed, error=%d\n", r); + printf("%s: init failed, error=%d\n", + sc->sc.sc_bus.bdev.dv_xname, r); return; } |