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)); }