From 766020195bc24c0adcb54a21966ebdd55e59b276 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 26 Sep 2022 11:07:41 -0600 Subject: [PATCH] Note when there is a missing USB driver --- xhcid/src/xhci/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/xhcid/src/xhci/mod.rs b/xhcid/src/xhci/mod.rs index 7d7918fe9e..368557d030 100644 --- a/xhcid/src/xhci/mod.rs +++ b/xhcid/src/xhci/mod.rs @@ -762,6 +762,7 @@ impl Xhci { .or(Err(Error::new(ENOENT)))?; self.drivers.insert(port, process); } else { + warn!("No driver for USB class {}.{}", ifdesc.class, ifdesc.sub_class); return Err(Error::new(ENOENT)); }