diff options
author | Brian Cully <bjc@kublai.com> | 2019-10-08 09:53:00 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2019-10-08 09:53:00 -0400 |
commit | cea87365750a024362967f2ec3fc95222b685b3a (patch) | |
tree | 84cad6227ccd95473c6747153c80c875a6cdd06f /src | |
parent | d1dd984b7eea72618a22a76b2f67cf6f79804cd5 (diff) | |
download | atsamd-usb-host-cea87365750a024362967f2ec3fc95222b685b3a.tar.gz atsamd-usb-host-cea87365750a024362967f2ec3fc95222b685b3a.zip |
Remove logging when allocating pipe.
Diffstat (limited to 'src')
-rw-r--r-- | src/pipe.rs | 6 |
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()) |