diff options
author | 2019-05-10 02:05:35 +0000 | |
---|---|---|
committer | 2019-05-10 02:05:35 +0000 | |
commit | 058b5690eb34a808289eca136119863d0fbfd457 (patch) | |
tree | f1547d39aaea3406cd379e1a5066759ec651c67e | |
parent | Apply retpoline protection to the indirect call to the thread startfunc (diff) | |
download | wireguard-openbsd-058b5690eb34a808289eca136119863d0fbfd457.tar.xz wireguard-openbsd-058b5690eb34a808289eca136119863d0fbfd457.zip |
Add more flags to the debug bitmask
ok mpi@
-rw-r--r-- | sys/dev/usb/xhcireg.h | 5 |
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) |