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

@ -220,7 +220,7 @@ pub trait ControlPipe {
fn max_packet_size(&self) -> usize;
/// Reads a single setup packet from the endpoint.
async fn setup<'a>(&'a mut self) -> [u8; 8];
async fn setup(&mut self) -> [u8; 8];
/// Reads a DATA OUT packet into `buf` in response to a control write request.
///