Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb More comments



details:   https://anonhg.NetBSD.org/src/rev/f1f65a9a572d
branches:  trunk
changeset: 345366:f1f65a9a572d
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sun May 22 08:02:23 2016 +0000

description:
More comments

diffstat:

 sys/dev/usb/ohcivar.h |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (25 lines):

diff -r a567ea91113f -r f1f65a9a572d sys/dev/usb/ohcivar.h
--- a/sys/dev/usb/ohcivar.h     Sun May 22 07:52:09 2016 +0000
+++ b/sys/dev/usb/ohcivar.h     Sun May 22 08:02:23 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ohcivar.h,v 1.57 2016/05/22 07:52:09 skrll Exp $       */
+/*     $NetBSD: ohcivar.h,v 1.58 2016/05/22 08:02:23 skrll Exp $       */
 
 /*
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -66,12 +66,12 @@
 
 typedef struct ohci_soft_itd {
        ohci_itd_t itd;
-       struct ohci_soft_itd *nextitd; /* mirrors nexttd in ITD */
-       struct ohci_soft_itd *dnext; /* next in done list */
+       struct ohci_soft_itd *nextitd;  /* mirrors nexttd in ITD */
+       struct ohci_soft_itd *dnext;    /* next in done list */
        ohci_physaddr_t physaddr;
        usb_dma_t dma;
        int offs;
-       LIST_ENTRY(ohci_soft_itd) hnext;
+       LIST_ENTRY(ohci_soft_itd) hnext;/* next on hash list */
        struct usbd_xfer *xfer;
        uint16_t flags;
        bool isdone;    /* used only when DIAGNOSTIC is defined */



Home | Main Index | Thread Index | Old Index