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 <dakr@kernel.org>
Link: https://lore.kernel.org/r/20250103164655.96590-3-dakr@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Danilo Krummrich 2025-01-03 17:46:02 +01:00 committed by Greg Kroah-Hartman
parent 7e16820fe5
commit 9b88018932

View File

@ -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;