From: Miguel Ojeda Date: Thu, 26 Sep 2024 12:47:51 +0000 (+0200) Subject: rust: kernel: sort Rust modules X-Git-Tag: v6.12-rc2~31^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ece207a83e464af710d641f29e32b7a144c48e79;p=thirdparty%2Fkernel%2Flinux.git rust: kernel: sort Rust modules Rust modules are intended to be sorted, thus do so. This makes `rustfmtcheck` to pass again. Fixes: 570172569238 ("Merge tag 'rust-6.12' of https://github.com/Rust-for-Linux/linux") Reviewed-by: Alice Ryhl Link: https://lore.kernel.org/r/20240926124751.345471-1-ojeda@kernel.org Signed-off-by: Miguel Ojeda --- diff --git a/rust/kernel/lib.rs b/rust/kernel/lib.rs index 22a3bfa5a9e96..b5f4b3ce6b482 100644 --- a/rust/kernel/lib.rs +++ b/rust/kernel/lib.rs @@ -44,8 +44,8 @@ pub mod net; pub mod page; pub mod prelude; pub mod print; -pub mod sizes; pub mod rbtree; +pub mod sizes; mod static_assert; #[doc(hidden)] pub mod std_vendor;