diff options
author | Ian Moffett <ian@osmora.org> | 2024-04-03 10:12:15 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-04-03 10:12:15 -0400 |
commit | 2af8c13347888c910a89563627b76a4c0cde5ed6 (patch) | |
tree | 4d21f5d742cc195d13dee6078888120d0d7a7d70 /sys | |
parent | 44d45f36814c4f147ed9c7716a8ae9ecb89ccb72 (diff) |
kernel: xhci: Remove redundant comment
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/xhci.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/dev/usb/xhci.c b/sys/dev/usb/xhci.c index 5b0f273..90d37fe 100644 --- a/sys/dev/usb/xhci.c +++ b/sys/dev/usb/xhci.c @@ -320,8 +320,6 @@ xhci_alloc_cmdring(struct xhci_hc *hc) size_t cmdring_size; cmdring_size = XHCI_TRB_SIZE * XHCI_CMDRING_LEN; - - /* Create command ring */ hc->cmd_ring = dynalloc_memalign(cmdring_size, 0x1000); __assert(hc->cmd_ring != NULL); |