Skip to content

Commit

Permalink
rust: io: move module entry to its correct location
Browse files Browse the repository at this point in the history
The module entry of `io` falsely ended up in the "use" block instead of
the "mod" block, hence move it to its correct location.

Signed-off-by: Danilo Krummrich <dakr@kernel.org>
  • Loading branch information
Danilo Krummrich committed Jan 14, 2025
1 parent b6af49d commit 5a1f97e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/kernel/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ pub mod error;
pub mod firmware;
pub mod fs;
pub mod init;
pub mod io;
pub mod ioctl;
pub mod jump_label;
#[cfg(CONFIG_KUNIT)]
Expand Down Expand Up @@ -87,7 +88,6 @@ pub mod workqueue;

#[doc(hidden)]
pub use bindings;
pub mod io;
pub use macros;
pub use uapi;

Expand Down

0 comments on commit 5a1f97e

Please sign in to comment.