Module Name: src
Committed By: skrll
Date: Sat Apr 4 06:19:02 UTC 2015
Modified Files:
src/sys/dev/usb [nick-nhusb]: uhcivar.h
Log Message:
Change isdone to bool. Missed in previous commit.
To generate a diff of this commit:
cvs rdiff -u -r1.52.14.5 -r1.52.14.6 src/sys/dev/usb/uhcivar.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/uhcivar.h
diff -u src/sys/dev/usb/uhcivar.h:1.52.14.5 src/sys/dev/usb/uhcivar.h:1.52.14.6
--- src/sys/dev/usb/uhcivar.h:1.52.14.5 Thu Mar 19 17:26:43 2015
+++ src/sys/dev/usb/uhcivar.h Sat Apr 4 06:19:02 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: uhcivar.h,v 1.52.14.5 2015/03/19 17:26:43 skrll Exp $ */
+/* $NetBSD: uhcivar.h,v 1.52.14.6 2015/04/04 06:19:02 skrll Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -72,7 +72,7 @@ typedef struct uhci_intr_info {
uhci_soft_td_t *stdstart;
uhci_soft_td_t *stdend;
LIST_ENTRY(uhci_intr_info) list;
- int isdone; /* used only when DIAGNOSTIC is defined */
+ bool isdone; /* used only when DIAGNOSTIC is defined */
} uhci_intr_info_t;
struct uhci_xfer {