summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2012-08-17 17:29:01 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2012-08-17 17:29:01 +0000
commit0884484f69859f1288df5c1fe9c4890d3e01748f (patch)
treeb56cf6e3970261f15b27697b589ea54e01ee996a /sys
parent3700258e17ab696e289b3d39f866e30abf192560 (diff)
Fix typos in DPRINTF() so error messages refer to correct *hci.
Spotted by Artturi Alm. Thanks!
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/ehci.c4
-rw-r--r--sys/dev/usb/uhci.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c
index 3049cc3a687..c00470f9991 100644
--- a/sys/dev/usb/ehci.c
+++ b/sys/dev/usb/ehci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ehci.c,v 1.125 2012/08/07 23:51:36 krw Exp $ */
+/* $OpenBSD: ehci.c,v 1.126 2012/08/17 17:29:00 krw Exp $ */
/* $NetBSD: ehci.c,v 1.66 2004/06/30 03:11:56 mycroft Exp $ */
/*
@@ -3884,7 +3884,7 @@ ehci_device_isoc_start(usbd_xfer_handle xfer)
splx(s);
if (sc->sc_bus.use_polling) {
- DPRINTF(("Starting ohci isoc xfer with polling. Bad idea?\n"));
+ DPRINTF(("Starting ehci isoc xfer with polling. Bad idea?\n"));
ehci_waitintr(sc, xfer);
}
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c
index a84586fb08f..825c607c1fb 100644
--- a/sys/dev/usb/uhci.c
+++ b/sys/dev/usb/uhci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uhci.c,v 1.91 2012/08/07 23:51:36 krw Exp $ */
+/* $OpenBSD: uhci.c,v 1.92 2012/08/17 17:29:00 krw Exp $ */
/* $NetBSD: uhci.c,v 1.172 2003/02/23 04:19:26 simonb Exp $ */
/* $FreeBSD: src/sys/dev/usb/uhci.c,v 1.33 1999/11/17 22:33:41 n_hibma Exp $ */
@@ -2413,7 +2413,7 @@ uhci_device_isoc_start(usbd_xfer_handle xfer)
splx(s);
if (sc->sc_bus.use_polling) {
- DPRINTF(("Starting ohci isoc xfer with polling. Bad idea?\n"));
+ DPRINTF(("Starting uhci isoc xfer with polling. Bad idea?\n"));
uhci_waitintr(sc, xfer);
}