diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2019-05-10 02:05:36 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2019-05-10 02:05:36 +0000 |
commit | 88fd5fcce290349bb6047fda0e14024f7dab3b63 (patch) | |
tree | 7a0038fb72df31a387a5102087ea620994dafb2b /sys/dev/usb/xhcireg.h | |
parent | 6bbabae39ea0918a1152851474ebcb01ac1d982f (diff) |
Add more flags to the debug bitmask
ok mpi@
Diffstat (limited to 'sys/dev/usb/xhcireg.h')
-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) |