Module Name: src
Committed By: skrll
Date: Sun May 22 08:02:23 UTC 2016
Modified Files:
src/sys/dev/usb: ohcivar.h
Log Message:
More comments
To generate a diff of this commit:
cvs rdiff -u -r1.57 -r1.58 src/sys/dev/usb/ohcivar.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/usb/ohcivar.h
diff -u src/sys/dev/usb/ohcivar.h:1.57 src/sys/dev/usb/ohcivar.h:1.58
--- src/sys/dev/usb/ohcivar.h:1.57 Sun May 22 07:52:09 2016
+++ src/sys/dev/usb/ohcivar.h Sun May 22 08:02:23 2016
@@ -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_td {
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 */