aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2019-10-08 09:53:00 -0400
committerBrian Cully <bjc@kublai.com>2019-10-08 09:53:00 -0400
commitcea87365750a024362967f2ec3fc95222b685b3a (patch)
tree84cad6227ccd95473c6747153c80c875a6cdd06f
parentd1dd984b7eea72618a22a76b2f67cf6f79804cd5 (diff)
downloadatsamd-usb-host-cea87365750a024362967f2ec3fc95222b685b3a.tar.gz
atsamd-usb-host-cea87365750a024362967f2ec3fc95222b685b3a.zip
Remove logging when allocating pipe.
-rw-r--r--src/pipe.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/pipe.rs b/src/pipe.rs
index 814ce63..e0acde5 100644
--- a/src/pipe.rs
+++ b/src/pipe.rs
@@ -97,12 +97,6 @@ impl PipeTable {
let ptype = PType::from(endpoint.transfer_type()) as u8;
unsafe { w.ptype().bits(ptype) }
});
- trace!(
- "setting paddr of pipe {} to {}:{}",
- i,
- endpoint.address(),
- endpoint.endpoint_num()
- );
pdesc.bank0.ctrl_pipe.write(|w| {
w.pdaddr().set_addr(endpoint.address());
w.pepnum().set_epnum(endpoint.endpoint_num())