Skip to content

Commit 5a1f97e

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 b6af49d commit 5a1f97e

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
@@ -51,6 +51,7 @@ pub mod error;
5151
pub mod firmware;
5252
pub mod fs;
5353
pub mod init;
54+
pub mod io;
5455
pub mod ioctl;
5556
pub mod jump_label;
5657
#[cfg(CONFIG_KUNIT)]
@@ -87,7 +88,6 @@ pub mod workqueue;
8788

8889
#[doc(hidden)]
8990
pub use bindings;
90-
pub mod io;
9191
pub use macros;
9292
pub use uapi;
9393

0 commit comments

Comments
 (0)