Skip to content

Commit 72197f6

Browse files
author
Danilo Krummrich
committed
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 <[email protected]>
1 parent d0b0852 commit 72197f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/kernel/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ pub mod error;
5050
pub mod firmware;
5151
pub mod fs;
5252
pub mod init;
53+
pub mod io;
5354
pub mod ioctl;
5455
pub mod jump_label;
5556
#[cfg(CONFIG_KUNIT)]
@@ -86,7 +87,6 @@ pub mod workqueue;
8687

8788
#[doc(hidden)]
8889
pub use bindings;
89-
pub mod io;
9090
pub use macros;
9191
pub use uapi;
9292

0 commit comments

Comments
 (0)