diff options
author | Ian Moffett <ian@osmora.org> | 2025-08-08 23:05:12 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-08-08 23:05:12 -0400 |
commit | b0f9596d09d95755f47a4443d2b775ee41025607 (patch) | |
tree | a6dc79f7dc30a4c105482f18df1bf4a6225de1b0 /sys | |
parent | e460f7ea7913ce1363f15bc784f7d6817acd8a96 (diff) |
kernel: xhci: Log reset timeouts
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/xhci.c | 1 |
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; } |