From 5a709b0f43f42674acf6aacca261912c4e573873 Mon Sep 17 00:00:00 2001 From: Red Bear OS Date: Sun, 19 Jul 2026 21:48:41 +0900 Subject: [PATCH] =?UTF-8?q?xhcid:=20fix=20build=20=E2=80=94=20InterruptMet?= =?UTF-8?q?hod=20does=20not=20implement=20Debug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The reactor-start trace used {:?} on InterruptMethod, which has no Debug impl. Dropped the format arg. --- drivers/usb/xhcid/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/xhcid/src/main.rs b/drivers/usb/xhcid/src/main.rs index 478ad9187b..47341113a1 100644 --- a/drivers/usb/xhcid/src/main.rs +++ b/drivers/usb/xhcid/src/main.rs @@ -211,7 +211,7 @@ fn daemon_with_context_size( log::info!("xhcid: daemon ready"); xhci::start_irq_reactor(&hci, irq_file); - log::info!("xhcid: irq reactor started (method {:?})", interrupt_method); + log::info!("xhcid: irq reactor started"); xhci::start_device_enumerator(&hci); log::info!("xhcid: device enumerator started");