diff options
author | joe <joe@FreeBSD.org> | 2002-04-07 15:18:00 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2002-04-07 15:18:00 +0000 |
commit | 848ccc6bb48644daa1c6dda2e5e82b248da29032 (patch) | |
tree | 2a75a817adb08a438114301d1c41db6ffbd2df0a | |
parent | 942f573c8ce5b7ba2c2ddc8937f7358edd2a06b1 (diff) | |
download | FreeBSD-src-848ccc6bb48644daa1c6dda2e5e82b248da29032.zip FreeBSD-src-848ccc6bb48644daa1c6dda2e5e82b248da29032.tar.gz |
MFNetBSD:
revision 1.121
date: 2002/03/16 16:11:18; author: tsutsui; state: Exp; lines: +4 -4
Fix a couple of typo:
- s/ehci/ohci/ (in unused arg of macro)
- s/uhci/ohci/ (in debug message)
-rw-r--r-- | sys/dev/usb/ohci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index c699617..749f75f 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -1,4 +1,4 @@ -/* $NetBSD: ohci.c,v 1.119 2001/12/31 12:20:35 augustss Exp $ */ +/* $NetBSD: ohci.c,v 1.121 2002/03/16 16:11:18 tsutsui Exp $ */ /* $FreeBSD$ */ /* @@ -2185,7 +2185,7 @@ ohci_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, ohci_timeout, xfer); usb_transfer_complete(xfer); splx(s); } @@ -3322,7 +3322,7 @@ ohci_device_isoc_start(usbd_xfer_handle xfer) #ifdef DIAGNOSTIC if (xfer->status != USBD_IN_PROGRESS) - printf("uhci_device_isoc_start: not in progress %p\n", xfer); + printf("ohci_device_isoc_start: not in progress %p\n", xfer); #endif /* XXX anything to do? */ |