Fix typos.

Never, never, never commit without compiling first.
This commit is contained in:
augustss 2000-01-19 01:16:38 +00:00
parent fe18229923
commit 55c5d10627
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: uhci.c,v 1.79 2000/01/19 01:04:26 augustss Exp $ */
/* $NetBSD: uhci.c,v 1.80 2000/01/19 01:16:38 augustss Exp $ */
/* $FreeBSD: src/sys/dev/usb/uhci.c,v 1.33 1999/11/17 22:33:41 n_hibma Exp $ */
/*
@ -2575,7 +2575,7 @@ uhci_open(pipe)
ival = pipe->interval;
if (ival == USBD_DEFAULT_INTERVAL)
ival = ed->bInterval;
return (ohci_device_setintr(sc, opipe, ival));
return (uhci_device_setintr(sc, upipe, ival));
case UE_ISOCHRONOUS:
pipe->methods = &uhci_device_isoc_methods;
return (uhci_setup_isoc(pipe));

View File

@ -1,4 +1,4 @@
/* $NetBSD: usbdivar.h,v 1.45 2000/01/19 00:23:59 augustss Exp $ */
/* $NetBSD: usbdivar.h,v 1.46 2000/01/19 01:16:40 augustss Exp $ */
/* $FreeBSD: src/sys/dev/usb/usbdivar.h,v 1.11 1999/11/17 22:33:51 n_hibma Exp $ */
/*
@ -197,6 +197,7 @@ struct usbd_xfer {
SIMPLEQ_ENTRY(usbd_xfer) next;
void *hcpriv; /* private use by the HC driver */
int hcprivint;
#if defined(__FreeBSD__)
struct callout_handle timo_handle;