aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-04-03 10:12:15 -0400
committerIan Moffett <ian@osmora.org>2024-04-03 10:12:15 -0400
commit2af8c13347888c910a89563627b76a4c0cde5ed6 (patch)
tree4d21f5d742cc195d13dee6078888120d0d7a7d70 /sys
parent44d45f36814c4f147ed9c7716a8ae9ecb89ccb72 (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.c2
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);