From a274af77d5d215dd86ee73753b367d3f18a56417 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 5 Mar 2018 00:43:42 +0800 Subject: [PATCH] runtime: fix compilation without DRTIO --- 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 279c9c865..a5778bd59 100644 --- a/artiq/firmware/runtime/rtio_mgt.rs +++ b/artiq/firmware/runtime/rtio_mgt.rs @@ -196,7 +196,7 @@ pub mod drtio { } #[cfg(not(has_drtio))] -mod drtio { +pub mod drtio { use super::*; pub fn startup(_io: &Io) {}