diff --git a/xhcid/src/xhci/ring.rs b/xhcid/src/xhci/ring.rs index e615e95a10..b1fae6ffdb 100644 --- a/xhcid/src/xhci/ring.rs +++ b/xhcid/src/xhci/ring.rs @@ -35,12 +35,10 @@ impl Ring { self.i = 0; if self.link { - println!("Link"); let address = self.trbs.physical(); self.trbs[i].link(address, true, self.cycle); self.cycle = !self.cycle; } else { - println!("No-link"); break; } } else {