diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-10-28 16:07:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-10-28 16:07:34 +0000 |
commit | cf7de6f4abce6ce2cda85d6d5ec2ae3f851f1d8f (patch) | |
tree | cbbb1fa43840a7b6c4a77f7023500762f4809627 /sys/dev/usb | |
parent | 8f15732eba42705e978cdbbdabb0821415d054ad (diff) |
improve look of ;; in a for loop
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/ohci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index 5b1c1544ccd..b92589a2940 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ohci.c,v 1.100 2010/10/23 15:42:09 jakemsr Exp $ */ +/* $OpenBSD: ohci.c,v 1.101 2010/10/28 16:07:33 deraadt Exp $ */ /* $NetBSD: ohci.c,v 1.139 2003/02/22 05:24:16 tsutsui Exp $ */ /* $FreeBSD: src/sys/dev/usb/ohci.c,v 1.22 1999/11/17 22:33:40 n_hibma Exp $ */ @@ -1421,7 +1421,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(letoh32(sitd-> |