From: Danilo Krummrich Date: Fri, 3 Jan 2025 16:46:02 +0000 (+0100) Subject: rust: io: move module entry to its correct location X-Git-Tag: v6.14-rc1~55^2~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b880189327b9727640147253f3236ec5b3f704f;p=thirdparty%2Fkernel%2Flinux.git rust: io: move module entry to its correct location 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 Link: https://lore.kernel.org/r/20250103164655.96590-3-dakr@kernel.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/rust/kernel/lib.rs b/rust/kernel/lib.rs index b7351057ed9c0..b11fa08de3c0f 100644 --- a/rust/kernel/lib.rs +++ b/rust/kernel/lib.rs @@ -48,6 +48,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)] @@ -84,7 +85,6 @@ pub mod workqueue; #[doc(hidden)] pub use bindings; -pub mod io; pub use macros; pub use uapi;