Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion rust/kernel/lib.rs
Original file line numberDiff line numberDiff line change
Expand Up@@ -20,6 +20,7 @@
const_panic,
const_raw_ptr_deref,
const_unreachable_unchecked,
doc_cfg,
receiver_trait,
try_reserve
)]
Expand DownExpand Up@@ -63,7 +64,8 @@ pub mod random;
mod static_assert;
pub mod sync;

#[cfg(CONFIG_SYSCTL)]
#[cfg(any(CONFIG_SYSCTL, doc))]
#[doc(cfg(CONFIG_SYSCTL))]
pub mod sysctl;

pub mod io_buffer;
Expand Down