summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/usbdivar.h
diff options
context:
space:
mode:
authormpi <mpi@openbsd.org>2014-11-10 14:26:38 +0000
committermpi <mpi@openbsd.org>2014-11-10 14:26:38 +0000
commit8bfbe9108ea54d64fe82a50791ce7727e5e516b5 (patch)
tree79bd33aee2f7c43599dcb538abc9399b42d85fd6 /sys/dev/usb/usbdivar.h
parentDon't attempt to open log files when using syslog, as we are not going to (diff)
downloadwireguard-openbsd-8bfbe9108ea54d64fe82a50791ce7727e5e516b5.tar.xz
wireguard-openbsd-8bfbe9108ea54d64fe82a50791ce7727e5e516b5.zip
Add some fields needed for TT support.
Diffstat (limited to 'sys/dev/usb/usbdivar.h')
-rw-r--r--sys/dev/usb/usbdivar.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/usb/usbdivar.h b/sys/dev/usb/usbdivar.h
index 8e9df7498c7..769db491f01 100644
--- a/sys/dev/usb/usbdivar.h
+++ b/sys/dev/usb/usbdivar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: usbdivar.h,v 1.66 2014/11/10 11:01:13 mpi Exp $ */
+/* $OpenBSD: usbdivar.h,v 1.67 2014/11/10 14:26:38 mpi Exp $ */
/* $NetBSD: usbdivar.h,v 1.70 2002/07/11 21:14:36 augustss Exp $ */
/* $FreeBSD: src/sys/dev/usb/usbdivar.h,v 1.11 1999/11/17 22:33:51 n_hibma Exp $ */
@@ -90,9 +90,10 @@ struct usbd_port {
struct usbd_hub {
int (*explore)(struct usbd_device *);
void *hubsoftc;
- int nports;
- u_int8_t powerdelay;
- struct usbd_port *ports;
+ struct usbd_port *ports;
+ int nports;
+ u_int8_t powerdelay;
+ u_int8_t ttthink;
};
struct usbd_bus {