diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-11 19:00:59 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-11 19:00:59 -0400 |
commit | 3fdef4036ebde968f13567288fa96d79e9670611 (patch) | |
tree | cf32d2822d2aae90bb3ca8bccd780db2e9d1c34c /src | |
parent | f07c51164e75ffa25b570e2233713b5a2cfa275a (diff) |
kern: xhci: Comment USBCMD bits
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/sys/include/io/usb/xhciregs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sys/include/io/usb/xhciregs.h b/src/sys/include/io/usb/xhciregs.h index f849c54..ebaf5d7 100644 --- a/src/sys/include/io/usb/xhciregs.h +++ b/src/sys/include/io/usb/xhciregs.h @@ -75,7 +75,8 @@ struct __packed xhci_opregs { * * See section 5.4.1 of the xHCI spec */ -#define USBCMD_HCRST BIT(1) +#define USBCMD_HCRST BIT(1) /* Host controller reset */ + /* * Macros to get various register spaces |