From af77885dfcaa7693c92539ad44738a414cac8010 Mon Sep 17 00:00:00 2001 From: mwojcik Date: Fri, 22 Sep 2023 09:46:40 +0800 Subject: [PATCH] rtio_mgt: fix drtio reset on standalone --- artiq/firmware/runtime/rtio_mgt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/firmware/runtime/rtio_mgt.rs b/artiq/firmware/runtime/rtio_mgt.rs index 0eb1679fc..3ead188b5 100644 --- a/artiq/firmware/runtime/rtio_mgt.rs +++ b/artiq/firmware/runtime/rtio_mgt.rs @@ -485,7 +485,7 @@ pub mod drtio { _routing_table: &Urc>, _up_destinations: &Urc>, _ddma_mutex: &Mutex) {} - pub fn reset(_io: &Io, _aux_mutex: &Mutex, _ddma_mutex: &Mutex) {} + pub fn reset(_io: &Io, _aux_mutex: &Mutex) {} } static mut SEEN_ASYNC_ERRORS: u8 = 0;