diff options
Diffstat (limited to 'rust/kernel/lib.rs')
| -rw-r--r-- | rust/kernel/lib.rs | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/rust/kernel/lib.rs b/rust/kernel/lib.rs index 6b4774b2b1c3..a356b8ad9464 100644 --- a/rust/kernel/lib.rs +++ b/rust/kernel/lib.rs @@ -34,6 +34,9 @@  // Expected to become stable.  #![feature(arbitrary_self_types)]  // +// To be determined. +#![feature(used_with_arg)] +//  // `feature(derive_coerce_pointee)` is expected to become stable. Before Rust  // 1.84.0, it did not exist, so enable the predecessor features.  #![cfg_attr(CONFIG_RUSTC_HAS_COERCE_POINTEE, feature(derive_coerce_pointee))] @@ -51,6 +54,7 @@ extern crate self as kernel;  pub use ffi; +pub mod acpi;  pub mod alloc;  #[cfg(CONFIG_AUXILIARY_BUS)]  pub mod auxiliary; @@ -100,6 +104,7 @@ pub mod platform;  pub mod prelude;  pub mod print;  pub mod rbtree; +pub mod regulator;  pub mod revocable;  pub mod security;  pub mod seq_file; | 
