diff options
author | joe <joe@FreeBSD.org> | 2003-07-14 19:56:32 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2003-07-14 19:56:32 +0000 |
commit | be9308fc7989436555f80851a63175a7ac4cd2a2 (patch) | |
tree | 66b85432e05be21e51bbaac0bf569a2d4dd593b0 | |
parent | 9a4aac25dafa8cec3c9707264959fa421285092d (diff) | |
download | FreeBSD-src-be9308fc7989436555f80851a63175a7ac4cd2a2.zip FreeBSD-src-be9308fc7989436555f80851a63175a7ac4cd2a2.tar.gz |
Backout the last commit!
MFNetBSD: revision 1.137
date: 2003/01/20 07:12:13; author: simonb;
Grrr. So much for my ability to use grep(1) effectively. Pointed out
by Stephen Degler in private mail.
-rw-r--r-- | sys/dev/usb/ohci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index 9909540..f73d3da 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -12,6 +12,7 @@ * $NetBSD: ohci.c,v 1.134 2002/12/07 07:33:20 toshii Exp $ * $NetBSD: ohci.c,v 1.135 2002/12/10 14:07:37 toshii Exp $ * $NetBSD: ohci.c,v 1.136 2003/01/20 05:30:09 simonb Exp $ + * $NetBSD: ohci.c,v 1.137 2003/01/20 07:12:13 simonb Exp $ * $NetBSD: ohci.c,v 1.138 2003/02/08 03:32:50 ichiro Exp $ * $NetBSD: ohci.c,v 1.140 2003/05/13 04:42:00 gson Exp $ */ @@ -1482,7 +1483,7 @@ ohci_softintr(void *v) bEndpointAddress); xfer->status = USBD_NORMAL_COMPLETION; actlen = 0; - for (i = 0, sitd = xfer->hcpriv; + for (i = 0, sitd = xfer->hcpriv;; sitd = next) { next = sitd->nextitd; if (OHCI_ITD_GET_CC(le32toh(sitd-> |