diff options
| author | Josef Karthauser <joe@FreeBSD.org> | 2002-04-07 15:08:39 +0000 |
|---|---|---|
| committer | Josef Karthauser <joe@FreeBSD.org> | 2002-04-07 15:08:39 +0000 |
| commit | 1c6db1a2322b047e14532449941cfcfefe724b87 (patch) | |
| tree | ddce3c9eb091c267bf618ddad02c15d7f57e06ae /sys/dev | |
| parent | daae4fc6d96c7b856322f4e30e375772e8e2bdf1 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -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 84844dbeaf46..228a615f70b1 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; } |
