usb-driver: Remove unncessary lifetime

This commit is contained in:
Gabriel Smith
2022-11-27 16:26:58 -05:00
parent d438d1b685
commit 3ca14ba4e9
3 changed files with 3 additions and 3 deletions

View File

@ -638,7 +638,7 @@ impl<'d, T: Instance> driver::ControlPipe for ControlPipe<'d, T> {
64
}
async fn setup<'a>(&'a mut self) -> [u8; 8] {
async fn setup(&mut self) -> [u8; 8] {
loop {
trace!("SETUP read waiting");
let regs = T::regs();