summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-08-08 23:05:12 -0400
committerIan Moffett <ian@osmora.org>2025-08-08 23:05:12 -0400
commitb0f9596d09d95755f47a4443d2b775ee41025607 (patch)
treea6dc79f7dc30a4c105482f18df1bf4a6225de1b0 /sys/dev
parente460f7ea7913ce1363f15bc784f7d6817acd8a96 (diff)
kernel: xhci: Log reset timeouts
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/xhci.c1
1 files changed, 1 insertions, 0 deletions
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;
}