summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2019-05-10 02:05:35 +0000
committerguenther <guenther@openbsd.org>2019-05-10 02:05:35 +0000
commit058b5690eb34a808289eca136119863d0fbfd457 (patch)
treef1547d39aaea3406cd379e1a5066759ec651c67e
parentApply retpoline protection to the indirect call to the thread startfunc (diff)
downloadwireguard-openbsd-058b5690eb34a808289eca136119863d0fbfd457.tar.xz
wireguard-openbsd-058b5690eb34a808289eca136119863d0fbfd457.zip
Add more flags to the debug bitmask
ok mpi@
-rw-r--r--sys/dev/usb/xhcireg.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/usb/xhcireg.h b/sys/dev/usb/xhcireg.h
index b759cc5cc0d..3c93a3a7f80 100644
--- a/sys/dev/usb/xhcireg.h
+++ b/sys/dev/usb/xhcireg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: xhcireg.h,v 1.15 2019/02/14 18:41:00 mglocker Exp $ */
+/* $OpenBSD: xhcireg.h,v 1.16 2019/05/10 02:05:35 guenther Exp $ */
/*-
* Copyright (c) 2014 Martin Pieuchot. All rights reserved.
@@ -370,7 +370,8 @@ struct xhci_trb {
} __packed;
#define XHCI_TRB_FLAGS_BITMASK \
- "\20\007IDT\006IOC\005CHAIN\004NOSNOOP\003ISP\002LINKSEG\001CYCLE"
+ "\20" "\040SIA" "\022TRT_OUT" "\021DIR_IN" "\012BSR" "\007IDT" \
+ "\006IOC" "\005CHAIN" "\004NOSNOOP" "\003ISP" "\002LINKSEG" "\001CYCLE"
#define XHCI_TRB_TYPE_MASK 0xfc00
#define XHCI_TRB_TYPE(x) (((x) & XHCI_TRB_TYPE_MASK) >> 10)