diff options
Diffstat (limited to 'rust/kernel/io.rs')
-rw-r--r-- | rust/kernel/io.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rust/kernel/io.rs b/rust/kernel/io.rs index 72d80a6f131e..b7fc759f8b5d 100644 --- a/rust/kernel/io.rs +++ b/rust/kernel/io.rs @@ -7,6 +7,11 @@ use crate::error::{code::EINVAL, Result}; use crate::{bindings, build_assert}; +pub mod mem; +pub mod resource; + +pub use resource::Resource; + /// Raw representation of an MMIO region. /// /// By itself, the existence of an instance of this structure does not provide any guarantees that |