diff options
author | joe <joe@FreeBSD.org> | 2002-04-07 15:08:39 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2002-04-07 15:08:39 +0000 |
commit | 8e37b24dea9ce74ad8d1370833d0a3f4612599d0 (patch) | |
tree | ddce3c9eb091c267bf618ddad02c15d7f57e06ae /sys | |
parent | f8500fe758dc95c70705a7f07d1f96d6e4c21186 (diff) | |
download | FreeBSD-src-8e37b24dea9ce74ad8d1370833d0a3f4612599d0.zip FreeBSD-src-8e37b24dea9ce74ad8d1370833d0a3f4612599d0.tar.gz |
MFNetBSD:
revision 1.117
date: 2001/12/27 11:27:11; author: augustss; state: Exp; lines: +5 -3
Update a comment.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/ohci.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index 84844db..228a615 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -1,4 +1,4 @@ -/* $NetBSD: ohci.c,v 1.116 2001/11/21 08:18:40 augustss Exp $ */ +/* $NetBSD: ohci.c,v 1.117 2001/12/27 11:27:11 augustss Exp $ */ /* $FreeBSD$ */ /* @@ -1302,11 +1302,13 @@ ohci_softintr(void *v) DPRINTFN(5, ("ohci_process_done: std=%p xfer=%p hcpriv=%p\n", std, xfer, (xfer ? xfer->hcpriv : NULL))); if (xfer == NULL || (std->flags & OHCI_TD_HANDLED)) { - /* xfer == NULL: There seems to be no xfer associated + /* + * xfer == NULL: There seems to be no xfer associated * with this TD. It is tailp that happened to end up on * the done queue. * flags & OHCI_TD_HANDLED: The TD has already been * handled by process_done and should not be done again. + * Shouldn't happen, but some chips are broken(?). */ continue; } |