From 649f1c8b208a311479ccf0a0c835ea9b50f1f7b0 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sun, 6 Aug 2017 17:19:07 -0600 Subject: [PATCH] Remove debugging of ring --- xhcid/src/xhci/ring.rs | 2 -- 1 file changed, 2 deletions(-) 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 {