From b0f9596d09d95755f47a4443d2b775ee41025607 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 8 Aug 2025 23:05:12 -0400 Subject: kernel: xhci: Log reset timeouts Signed-off-by: Ian Moffett --- sys/dev/usb/xhci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/usb/xhci.c b/sys/dev/usb/xhci.c index b429ac5..de78439 100644 --- a/sys/dev/usb/xhci.c +++ b/sys/dev/usb/xhci.c @@ -463,6 +463,7 @@ xhci_init_hc(struct xhci_hc *hc) pr_trace("resetting xHC chip...\n"); if ((error = xhci_reset(hc)) != 0) { + pr_error("reset timeout\n"); return error; } -- cgit v1.2.3