aboutsummaryrefslogtreecommitdiffstats
path: root/rust
diff options
context:
space:
mode:
authorMiguel Ojeda <ojeda@kernel.org>2025-10-17 01:13:50 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-10-28 10:04:04 +0100
commite2d2bd6d61a4f288bf38d9236c3ca3e34b84d3dd (patch)
tree32c75408395207abe153e4b57438d02cc5ea41a6 /rust
parentd518ec2cbcac1c1175563a115f5024eeb6b4cd8d (diff)
downloadtip-e2d2bd6d61a4f288bf38d9236c3ca3e34b84d3dd.tar.gz
rust: usb: fix formatting
We do our best to keep the repository `rustfmt`-clean, thus run the tool to fix the formatting issue. Link: https://docs.kernel.org/rust/coding-guidelines.html#style-formatting Link: https://rust-for-linux.com/contributing#submit-checklist-addendum Fixes: 9a55e0079258 ("Revert "USB: disable rust bindings from the build for now"") Signed-off-by: Miguel Ojeda <ojeda@kernel.org> Link: https://patch.msgid.link/20251016231350.1418501-1-ojeda@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'rust')
-rw-r--r--rust/kernel/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/kernel/lib.rs b/rust/kernel/lib.rs
index 9cf4ca0ae7a1ec..cd191686fef612 100644
--- a/rust/kernel/lib.rs
+++ b/rust/kernel/lib.rs
@@ -138,9 +138,9 @@ pub mod time;
pub mod tracepoint;
pub mod transmute;
pub mod types;
+pub mod uaccess;
#[cfg(CONFIG_USB = "y")]
pub mod usb;
-pub mod uaccess;
pub mod workqueue;
pub mod xarray;