summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosef Karthauser <joe@FreeBSD.org>2002-04-07 18:15:37 +0000
committerJosef Karthauser <joe@FreeBSD.org>2002-04-07 18:15:37 +0000
commit40367ccba9672e363f9cddb9f38f076b87ebd871 (patch)
tree2becbaa4a4e06e5c1647e4db6f4d60d4eab146ef
parent24c73fed019a48fc49a9b7ee8af13f0bf01d95af (diff)
Notes
-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 8de47be72595..26e862966198 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.