summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/uhci.c
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2002-04-07 18:15:37 +0000
committerjoe <joe@FreeBSD.org>2002-04-07 18:15:37 +0000
commitbff41cb46caf6eb35a561d8017dc59c7b890ea76 (patch)
tree2becbaa4a4e06e5c1647e4db6f4d60d4eab146ef /sys/dev/usb/uhci.c
parent76f66df571770330cc2dca6360e8038e4efb63cc (diff)
downloadFreeBSD-src-bff41cb46caf6eb35a561d8017dc59c7b890ea76.zip
FreeBSD-src-bff41cb46caf6eb35a561d8017dc59c7b890ea76.tar.gz
MFNetBSD:
revision 1.157 date: 2002/03/16 16:13:41; author: tsutsui; state: Exp; lines: +4 -4 Fix a couple of typo: - s/ehci/uhci/ (in unused arg of macro) - s/ohci/uhci/ (in panic message)
Diffstat (limited to 'sys/dev/usb/uhci.c')
-rw-r--r--sys/dev/usb/uhci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c
index 8de47be..26e8629 100644
--- a/sys/dev/usb/uhci.c
+++ b/sys/dev/usb/uhci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: uhci.c,v 1.156 2002/03/04 00:53:33 augustss Exp $ */
+/* $NetBSD: uhci.c,v 1.157 2002/03/16 16:13:41 tsutsui Exp $ */
/* $FreeBSD$ */
/*
@@ -1909,14 +1909,14 @@ uhci_abort_xfer(usbd_xfer_handle xfer, usbd_status status)
/* If we're dying, just do the software part. */
s = splusb();
xfer->status = status; /* make software ignore it */
- usb_uncallout(xfer->timeout_handle, ehci_timeout, xfer);
+ usb_uncallout(xfer->timeout_handle, uhci_timeout, xfer);
usb_transfer_complete(xfer);
splx(s);
return;
}
if (xfer->device->bus->intr_context || !curproc)
- panic("ohci_abort_xfer: not in process context\n");
+ panic("uhci_abort_xfer: not in process context\n");
/*
* Step 1: Make interrupt routine and hardware ignore xfer.
OpenPOWER on IntegriCloud