From 68792edb121db65e724653cf61159ad9067f2e24 Mon Sep 17 00:00:00 2001 From: Niklas Cathor Date: Sat, 18 Nov 2023 13:10:04 +0100 Subject: [PATCH] HostBus#pipe_continue: take mutable receiver --- src/bus.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bus.rs b/src/bus.rs index 7a9829c..094aa84 100644 --- a/src/bus.rs +++ b/src/bus.rs @@ -170,7 +170,7 @@ pub trait HostBus { /// /// For an `In` pipe this is called after the driver(s) have consumed the data. /// For an `Out` pipe this is called after new data has been placed in the buffer . - fn pipe_continue(&self, pipe_ref: u8); + fn pipe_continue(&mut self, pipe_ref: u8); /// Enable/disable interrupt on SOF ///